所以我有我的应用程序,我有一个带有点击计数器和显示标签的视图。我希望它在主视图上显示文本(现在可以),但也在第二个视图上。
那么我怎么能在另一个视图上显示文本。如果需要更多详细信息,请发送电子邮件。
为 TAP 计数器重现的步骤 .h 文件:
@interface Level1 : UIViewController {
int counter;
IBOutlet UILabel *count;
}
-(IBAction)plus;
@property (assign) int counter;
@end
.m 文件:
@synthesize counter;
- (void) viewDidLoad {
counter=1;
count.text = @"0";
[super viewDidLoad];
}
-(IBAction)plus {
counter=counter + 1;
count.text = [NSString stringWithFormat:@"%i",counter];
}
@end
提前致谢