Reputation: 7360
I'm using Xcode 5 and the iOS7 SDK to build my app. I am wanting to make a sign in page very similar to that of the iOS7 eBay app.
So what I would like to do is this:
I'm thinking I should be listening for UIKeyboard notifications and then do things based on that.
Here are my questions:
Upvotes: 0
Views: 317
Reputation: 5667
You should use the UIToolBar
and set it as inputaccessoryview to the textFields.
Here is one clean & clear solution for this problem.
For backGround animation please use this. May be you can set the background logo alpha = 0 initially.
[UIView animateWithDuration:0.7 animations:^{
self.view.logoImage.alpha = 1;
// make some more movements for anything that suits to your need.
// set frame of your textFields & any thing else that you need.
}
completion:^(BOOL finished){
// may be you can load a new view controller here.
}];
Hope that helps.
Upvotes: 1