2015-07-19 104 views
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"]; 

enter image description here

Parse

回答

1

這是一件好事,因爲我結束了深挖洞後自己搞清楚了這一點進入一些材料。

首先創建您的UITextView的標識,點到你的UITextView的電池標籤:

UITextView *myTextView = (UITextView*) [cell viewWithTag:100]; 

然後你在解析分配一個NSArray給您的數組:

NSArray *myArray = [object objectForKey:@"MyArrayInParse"]; 

然後你加入他們的行列婚姻是這樣的:

[myTextView setText:[myArray objectAtIndex:[indexPath section]]]; 

這就是你如何顯示在解析數組,到UITextV iew :)