我使用Xcode 5和iOS7 SDK来构建我的应用程序。我想在页面上做一个非常类似于iOS7 eBay应用程序的标记。
所以我想做的是:
我想我应该监听UIKeyboard通知,然后在此基础上做一些事情。
以下是我的问题:
发布于 2014-01-16 08:02:06
您应该使用UIToolBar并将其设置为textFields的inputaccessoryview。这里是解决此问题的一个清晰明了的解决方案。
博客帖子在这里
对于backGround动画,请使用这个。也许你可以先设置背景徽标alpha =0。
[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.
}];希望这能有所帮助。
https://stackoverflow.com/questions/21156120
复制相似问题