我的iOS应用程序有一个根视图控制器,我想在运行时向它添加一些自定义UIView
。我将这些自定义视图小部件称为小部件,因为它们很小,除了大小,标签文本等基本相同之外。
我为我的小部件和.xib文件创建了.h和.m。在我的根视图控制器viewDidLoad
中,我这样做:
TestMyView *cell = [[[NSBundle mainBundle] loadNibNamed:@"TestMyView" owner:self options:nil] objectAtIndex:0];
[self.view addSubview: cell];
工作正常。但是,我还是想不通:
"[<TestViewController 0x7517210> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key mylabel"
mylabel作为IBOutlet添加到我的自定义UIView类.h文件中,为什么会出现异常UILabel
。 (我在IB中拖放UILabel然后控制 - 拖动到.h)我需要在创建视图时更改标签文本。我不太明白为什么它抱怨TestViewController而我没有添加IBOutlet,但我的自定义视图.h类?如果你觉得我很难解释这个,这是我的项目代码: https://dl.dropbox.com/u/43017476/custom.tar.gz
答案 0 :(得分:4)
你很亲密。几点说明。
1st - 从nip加载视图时,“owner”是具有nib引用属性(IBOutlets)的类。这可能是TestMyView的一个实例。通常,创建自定义视图并让它加载它自己的笔尖(如下图所示)。
2nd - loadNibNamed返回NSARRAY,而不是UIVIEW;所以你要把你的视图拉出阵列。
以下是创建自定义视图(窗口小部件)的示例:
CGRect frame = CGRectMake(nextLeft, nextTop, tileWidth, tileHeight);
TestMyView *widget = [[TestMyView alloc] initWithFrame:frame andFoo:foo];
[widget setWidgetTappedBlock:^{
// handle tap for this widget
}];
[self.widgetContainerView addSubview:widget];
这是自定义视图实现的一部分:
@implementation TestMyView
- (id)initWithFrame:(CGRect)frame andFoo:(Foo *)foo
{
self = [super initWithFrame:frame];
if (self) {
[self setBackgroundColor:[UIColor clearColor]];
NSArray *nibObjects=[[NSBundle mainBundle] loadNibNamed:@"TestMyView" owner:self options:nil];
[self addSubview:[nibObjects objectAtIndex:0]];
// More initialization code
}
return self;
}
@end
界面:
@interface ProductTileView : UIView
@property (nonatomic, weak) IBOutlet UIView *view;
@property (nonatomic, copy) ProductTappedBlock widgetTappedBlock;
- (id)initWithFrame:(CGRect)frame andFoo:(Foo *)foo;
@end
修改强> PS在您的示例中,错误是由于发送到loadNib的所有者是“self”,这是您的视图控制器。您的视图控制器没有“myLabel”属性,您的自定义视图也是如此。
答案 1 :(得分:0)
我认为你必须先添加它们才能添加到rootView!
TestMyView *cell = [[TestMyView alloc]initWithNibName:@"TestMyView" bundle:[NSBundle mainBundle]];
[self.view addSubview: cell];