我正在尝试创建一个可重复使用的“拾取器”。它基本上就像是手机键盘。由于我会在我的iPhone应用程序中频繁使用它,我一直在尝试让它出现,感到非常沮丧。
It is in its own XIB file and has its own UIViewController subclass as the FileOwner. However, when I instantiate this with:
MonthPickerViewController *mpvc
= [[MonthPickerViewController alloc] initWithNibName:@"MonthPicker"
bundle:nil];
屏幕上没有任何反应。但它会触发 -viewWillAppear code>方法等。
那么,我到底在代码或InterfaceBuilder中做错了什么,使得我的视图无法显示?