我有一个基于导航的应用程序,其中某个推送视图具有漂亮的背景图像。现在这个视图包含一个透明的UITextView,所以我的背景显示整个视图,除了顶部有导航栏。现在,当我开始编辑textview时,我希望textview和背景图像在导航栏下“滑动”几个像素,以便在键盘显示时更加明显(没有键盘,它在屏幕上居中)
我将背景设置为:
UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"background.png"]];
self.view.backgroundColor = background;
[background release];
但这不允许我移动它。所以我想我必须制作一个子视图或其他东西才能让它发挥作用。我已经有了textview的动画,它只是我想移动的背景图像。我怎样才能做到这一点?
答案 0 :(得分:0)
只需使用UIImageView
作为背景......