1
我已成功管理將我的分析數據字符串指向UILabels並讓它們在UITableViewController上顯示內容。將分析數組分配給UITextView
在我的UITableView單元格上我也有一個UITextView來顯示Parse的數組。這個數組被稱爲「Post_Description」。在我的Storyboard上的單元格中,我給了我的UITextView 103的標籤。
但是,當我運行此代碼時,我遇到了崩潰。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayI length]: unrecognized selector sent to instance 0x170239c60'
這裏是我的呼籲UITextView中的代碼:
UITextView *postView = (UITextView*) [cell viewWithTag:103];
postView.text = [object objectForKey:@"Post_Description"];