我有一个自定义UIView
,它是使用xib构建的,文件所有者名为CustomModuleUIView
,其中包含标签和按钮。我在Rootviewcontroller中调用了这个自定义视图,我成功地使用initWithCoder
方法显示它。问题是我无法从UILabel
或根customMouleUIView
更改ViewController
的默认文本。我找到了一个示例,告诉我在initWithCoder
中进行自定义初始化,但它对我不起作用,没有任何变化,没有任何错误,它会显示默认文本。
这是我的自定义UIView xib
这是我的根视图控制器
这是我的代码哦自定义UIView .h
#import <UIKit/UIKit.h>
@interface ModuleCustomUIView : UIView
-(void) setup;
@property (weak, nonatomic) IBOutlet UIImageView *_moduleIcon;
@property (retain, nonatomic) IBOutlet UILabel *_moduleName;
- (IBAction)openDemo:(id)sender;
- (IBAction)close:(id)sender;
@property (weak, nonatomic) IBOutlet UIImageView *_moduleImage;
@property (strong, nonatomic) IBOutlet UILabel *_positionLabel;
@end
<。pm的代码,我使用setup方法来启动我的UIView,因为我无法调用
[[NSBundle mainBundle] loadNibNamed:xib owner:self options:nil] ;
在initWithCoder中导致无限循环。
-(id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if(self)
{
}
return self;
}
-(void) setup
{
NSString *xib= @"CustomUIView";
NSArray *array=[[NSBundle mainBundle] loadNibNamed:xib owner:self options:nil] ;
UIView *view =[array objectAtIndex:0];
//code that doesn't work
[_positionLabel setText:@"hello world"];
//
[self addSubview:view];
}
这是我的根视图控制器.h
- (void)viewDidLoad
{
[super viewDidLoad];
[_moduleCustomView setup];
[self.view addSubview:_moduleCustomView];
//code doesn't work
[_moduleCustomView setText:@"hello world"];
}
即使在完成加载时我也无法更改文本
答案 0 :(得分:5)
我发现了我的错误,它是关于文件所有者,我在检查器中更改了它但是通过选择uiview而不是te文件的所有者,我将NSObject更改为我的类名并重新连接标签。
答案 1 :(得分:0)
我猜文件所有者属性应该是你的'root viewcontroller'。