【发布时间】:2014-05-16 19:54:56
【问题描述】:
我正在尝试通过代码为整个应用设置背景:
UIViewController *controller = [[UIViewController alloc] init];
controller.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background@2x.png"]];
self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
在情节提要中,我在主 UIViewController 中有一个简单的按钮。在 AppDelegate.m 中,我在上面设置了该代码,但是,我在背景中添加了它们,它们位于情节提要中的文本前面。
我想知道如何将背景从当前索引设置为舞台中的最后一个索引。
【问题讨论】:
标签: objective-c cocoa-touch ios7