私はモンスターを作成しましたが、それは私を困惑させています。
iOS アプリのビューとデータを処理する rootViewController を作成しました。このコントローラーには、その外観を容易にする xib があります。次に、カスタム UIView クラスをサブクラス化し、xib を使用してそのビューを作成しました。次に、UIView クラスとその xib を追加して、RootViewControllers ビューに表示しようとしています。SO rootViewController は NIb をロードしており、Im はこの UIView サブクラスを追加して、そのビューをプログラムでインストールしようとしています。
私のファイル階層は次のとおりです..
mockAppDelegate.h
mockAppDelegate.m
mockViewController.h
mockViewController.m
mockViewController.xib
colorPickerLoad.h
colorPickerLoad.m
colorPickerLoad.xib
Code inside h controller file.
#import <UIKit/UIKit.h>
#import "colorPickerLoad.h"
@interface mockViewController : UIViewController
{
}
- (void)createColorPicker;
@end
In the controllers .m file:
@interface mockViewController ()
@end
@implementation mockViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self createColorPicker];
}
- (void)didReceiveMemoryWarning
{
[ super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)createColorPicker
{
colorPickerLoad *newload = [[colorPickerLoad alloc] init];
[self.view addSubview:newload];
[self.view setNeedsDisplay];
}
@終わり