とを持ってAppDelegate
いMainViewController
ます。で作成され、背景画像を設定し、に表示する必要がありMainViewController
ます。それはほとんどそれですが、私は見ることができません。UIButton
AppDelegate
MainViewController
UIButton
位置合わせのためにIBOutlet
、IBでボタンを作成して接続しました。
MainViewController.h
@property (strong, nonatomic) IBOutlet UIButton *searchBtn;
MainViewController.m
@synthesize searchBtn;
AppDelegate.m
@synthesize mainVC;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// ViewController > setup:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.mainVC = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
self.window.rootViewController = self.mainVC;
self.window.backgroundColor = [UIColor whiteColor];
// Buttons > Set background images:
[self.mainVC.searchBtn setImage:[UIImage imageNamed:@"search.png"] forState:UIControlStateNormal];
[self.mainVC.view addSubview:self.mainVC.searchBtn];
[self.window makeKeyAndVisible];
return YES;
}