我不知道爲什麼,但它在我的項目中不起作用。我做的和100萬個教程完全一樣。視圖控制器之間傳遞數據 - 故事板segues
我有TableViewController與TableView和簡單的ViewController的細節。
,並詳細視圖控制器的.h文件,我宣佈:
@property (strong, nonatomic) NSString *testText;
然後,在M檔下@implementation:
@synthesize testText;
在TableViewController與名單上有:
//declared above: UIViewController *ticketDetailViewController = [segue destinationViewController];
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSString *destinationTitle = [[ticketArray objectAtIndex:[indexPath row]] pkey];
[ticketDetailViewController setTitle:destinationTitle];
一切都很好。標題是正確的,所以必須有連接。但是,現在我想傳遞其他數據...所以我做了testText屬性,我想從TableViewController訪問,但我不能:/
錯誤說:Property'testText'not found on type'UIViewController *'
真正奇怪的是..調試過程中,有testText(如下面的屏幕上):
雖然當我要實現它..它沒有發現:
任何人都明白髮生了什麼事?