gpt4 book ai didi

ios - 更改自定义 UIView 的 UILabel 文本不起作用

转载 作者:行者123 更新时间:2023-12-01 17:55:21 26 4
gpt4 key购买 nike

我有一个自定义 UIView它是用 xib 构建的,它有一个名为 CustomModuleUIView 的文件所有者其中包含标签和按钮。我在我的 Rootviewcontroller 中调用了这个自定义 View ,并成功地使用 initWithCoder 显示它。方法。问题是我无法更改 UILabel 的默认文本都不是来自customMouleUIView也不是从根 ViewController .我在 initWithCoder 中找到了告诉我进行自定义初始化的示例但它对我不起作用,没有任何变化,并且没有任何错误,它显示默认文本。

这是我的自定义 UIView xib
enter image description here

这是我的 Root View Controller
enter image description here

这是我的代码哦自定义 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

.m 的代码,我使用 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];
}

这是我的 Root View Controller .h
- (void)viewDidLoad
{
[super viewDidLoad];
[_moduleCustomView setup];
[self.view addSubview:_moduleCustomView];
//code doesn't work
[_moduleCustomView setText:@"hello world"];
}

即使在加载时我也无法更改文本

最佳答案

我发现了我的错误,它与文件所有者有关,我已经在检查器中更改了它,但是通过选择 uiview 而不是文件所有者,我将 NSObject 更改为我的类名并重新连接标签。

关于ios - 更改自定义 UIView 的 UILabel 文本不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18955665/

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