我認爲ü可以配置烏爾細胞是這樣的:
(的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;
}
然後添加按鈕操作事件:
請更換「UIButtonTypeDetailDisclosure」烏拉圭回合慾望圖像按鈕
我認爲你必須要通過自定義單元格 –
做到這一點我如何自定義單元格?並訪問它? – Thejaswi
@MH babu我不想讓我的主人做任何代碼更改..我只想直接訪問圖像視圖。而無需將其更改爲按鈕。這可能嗎? – Thejaswi