男生女生你好
我有一个问题,我是 Objective c 和 iphone 应用程序的新手。但我正在尝试制作一些简单的应用程序,但我无法创建一个同时在下一个视图控制器中设置标签的 segue。
情况如下。我有一个加载了 nsarray 数据的 Tableviewcontroller。接下来我创建了一个 segue(ctrl + 拖动)。艾尔工作至今。现在视图控制器有一个标签,我已经命名了 segue,并且正在尝试以下代码。
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"ShowTitleInOtherViewController"]) {
PracticeViewController *pvc = [segue destinationViewController];
pvc.labelForDisplayData.text = @"Segue complete";
pvc.labelForDisplayData.textColor = [UIColor blueColor];
pvc.labelForDisplayData.font = [UIFont boldSystemFontOfSize:50];
}
}
我已经导入了标头,viewcontroller 标头如下所示:
@interface PracticeViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *labelForDisplayData;
@end
请告诉我我做错了什么。(没有错误)