我想按UILabel
更改UIButton
。我之前需要加载屏幕,但是如何在故事板中进行操作呢?现在代码是这样的:
这里的代码(.h文件):
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel *idLabel; // label to change
@property (strong, nonatomic) IBOutlet UIButton *addingButton; // clickOnButton
@end
方法(.m文件):
- (IBAction)addingHasTaped:(id)sender {
NetworkConnection *request = [[NetworkConnection alloc]init];
[request getDataFromServer];
self.idLabel.text = @"hi!";
}
我使用故事板,然后将UILabel
和UIButton
拖放到代码中。但是这种方法并没有改变UILabel
。
有什么问题?
答案 0 :(得分:0)
我认为您应该使用标签的合成属性并检查您的方法是否正在接听电话。