gpt4 book ai didi

ios - 如何? UISplitViewController TableCell 图像

转载 作者:行者123 更新时间:2023-11-29 13:44:38 27 4
gpt4 key购买 nike

我想知道是否可以将某种图标/图像分配给 iPad 应用程序中 UISplitViewController 左侧的导航表单元格。

例如第 1 行旁边的图像...

http://www.cre8ive.kr/blog/wp-content/uploads/SplitViewTest_03.png

我正在尝试通过编辑

来解决这个问题
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath; 

方法。

这是我得到的

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [NSString stringWithFormat:@"%i", indexPath.row +1];
//Let the magic happen here :D
UIImage *image = [UIImage imageNamed:@"deviantart_dark.png"];
//Nothing changes :(
[[cell imageView] setImage:image];
return cell;
}

有什么想法吗?

最佳答案

你可以使用下面的代码,

cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage:imageNamed:@"deviantart_dark.png"]];

关于ios - 如何? UISplitViewController TableCell 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7925243/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com