2012-09-13 96 views
0

對不起,我又來了。UILabel沒有顯示來自UITableview的值

在我的項目中,我使用UITableview來顯示weather.so,我需要將第一行文本顯示爲UILabel,沒有任何按鈕動作或watever。我只是想單元格文本到UILabel沒有任何行動。

例如: 在爲「可愛的IOS」 我想表現出同樣的文字沒有任何行動的UILabel的的tableview第一個單元格顯示文本。我在xib中使用了UILabel。 在此先感謝

請任何示例代碼。

回答

0

在該方法中- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath等同

cell.textLabel.text = [array objectAtIndex:indexPath.row]; 
LabelName.text= cell.textLabel.text; 
0

你有數據爲你的有啥大到UIlabel。你只需要設置相同的文字出現。 更新: -

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; 
NSString *cellText = cell.textLabel.text; 

你會得到的文本。

+0

但我選擇了3個UIlabels在廈門國際銀行。如果cell1的文本類似「OBJ」 – Joker

+0

標籤1 = OBJ,標籤2 = LAA,LABEL 3 = lol ...。像那,,,, – Joker

+0

你想要它只有第一個標籤?你看標籤文本到單元格或反之亦然? – Sandy

0

您有兩種選擇可以添加添加UILable,或者將文本設置爲cell.textLabel.text,方法如下。 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

1

只設置了行動特定的細胞

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 


    if (indexPath.row == 1){ 
//set action for cell 
} 
} 
+0

將標籤添加爲單元格中的子視圖 – NANNAV