gpt4 book ai didi

iphone - iOS - 将自定义 UIView 放入 View Controller 中

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:32 26 4
gpt4 key购买 nike

我的 iOS 应用有一个 Root View Controller ,我想添加一些自定义的 UIView在运行时给它。我将这些自定义 View 称为小部件,因为它们很小并且除了大小、标签文本等外基本相同。

我已经为我的小部件创建了 .h 和 .m,以及 .xib 文件。在我的 Root View Controller 中 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"如果我添加 UILabel mylabel 作为 IBOutlet 到我的自定义 UIView 类 .h 文件。 (我在 IB 中拖放 UILabel,然后控制拖动到 .h)我需要在创建 View 时更改标签文本。而且我不太明白为什么它提示 TestViewController 而我没有向它添加 IBOutlet,而是我的自定义 View .h 类?
  • 我该如何正确更改标签文本。我不想为我的小部件创建一个 View Controller ,因为我认为没有必要。我需要创建 5-6 个小部件,所以我需要为它们创建 5-6 个 View Controller ?
  • 似乎在我创建小部件时没有调用 initWithCoder?我看到苹果文档库说,如果从 nib 文件加载 View ,将调用此方法。

如果您认为我不擅长解释这个,这是我的项目代码: https://dl.dropbox.com/u/43017476/custom.tar.gz

最佳答案

你很接近。一些注意事项。

1st - 当您从 nip 加载 View 时,“所有者”是具有 nib 引用的属性 (IBOutlets) 的类。这可能是 TestMyView 的一个实例。通常,创建自定义 View 并让它加载自己的 Nib (如下图所示)。

第二 - loadNibNamed 返回一个 NSARRAY,而不是一个 UIVIEW;所以你会想把你的观点从数组中拉出来。

这是创建自定义 View (小部件)的示例:

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];

这是您自定义 View 实现的一部分:

@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',这是你的 View Controller 。您的 View Controller 没有“myLabel”属性,您的自定义 View 有。

关于iphone - iOS - 将自定义 UIView 放入 View Controller 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14911899/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com