2013-06-05 170 views
0

我有一個圖片視圖(點擊我在其中獲取彈出窗口)在表格視圖中關聯的單元格內。 日誌元素樹捕獲靜態文本'圖片',但它不顯示關聯的圖像視圖。如何點擊表格視圖中的單元格中的圖片視圖

我流就像表 - >細胞(具有約4細胞,其是靜態文本)

這些細胞依次附上與之文本框。 cell1-> textfields1 cell2-> textfields2 cell3-> textfields3 cell4->只有一張圖片。

如何訪問此圖片?

var imageId = table[0].cells()[4]; 

    imageId.images(); 

不返回任何東西。

+0

我認爲你必須要通過自定義單元格 –

+0

做到這一點我如何自定義單元格?並訪問它? – Thejaswi

+0

@MH babu我不想讓我的主人做任何代碼更改..我只想直接訪問圖像視圖。而無需將其更改爲按鈕。這可能嗎? – Thejaswi

回答

0

我認爲ü可以配置烏爾細胞是這樣的:

(的UITableViewCell *)的tableView:(UITableView的*)的tableView的cellForRowAtIndexPath:(NSIndexPath *)indexPath { 靜態的NSString * CellIdentifier = @ 「小區」;

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
if (cell == nil) { 
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]autorelease]; 

}

CGRect Frame4 = CGRectMake(10.0, 30.0, 50.0, 40.0); 
    UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure]; 
    button.frame = Frame4; 
    [button setTitle:@"Click" forState:UIControlStateNormal]; 
    button.backgroundColor = [UIColor grayColor]; 
    [button addTarget:self 
      action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside]; 
    [cell.contentView addSubview:button]; 




return cell; 

}

然後添加按鈕操作事件:

  • (IBAction爲)buttonPressed:(的UIButton *)發件人{

    //在發件人你可以得到,但噸按下 //做點什麼 }

請更換「UIButtonTypeDetailDisclosure」烏拉圭回合慾望圖像按鈕

相關問題