gpt4 book ai didi

iphone - iPhone中UITableViewCell绘制正方形的代码该写在哪里

转载 作者:行者123 更新时间:2023-12-03 20:17:14 24 4
gpt4 key购买 nike

我有以下代码来使用以下代码绘制方形轮廓。

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextClipToRect(context, CGRectMake(0.0, 00.0, 50, 50));
CGContextSetLineWidth(context, 3.0);
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextStrokeRect(context, CGContextGetClipBoundingBox(context));

我想将这个正方形绘制到 UITableViewCell 中。那么我应该在哪里编写代码以在该单元格中绘制一个正方形。我要画画

最佳答案

您可以将此代码写入表的 cellForRowAtIndexPath 方法

我编写了以下代码来在我的表格单元格中添加两个标签。

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
{
static NSString *cellId=@"Cell";
UITableViewCell *cell=[tableView dequeReusableCellWithIdentifier:cellId];

if(cell==nil)
{
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellId];
}

// you can put down you logic of customizing your cell here.
//for example see mine code.

CGRect frm1=CGRectMake(10,10,290,25);
UILabel *lbTmp;
lbTmp=[[UILabel alloc] initWithFrame: frm1];
lblTmp.text=@"something something"
cell.contentView addSubview:lb1Tmp];
[lblTmp release];
return cell;
}

关于iphone - iPhone中UITableViewCell绘制正方形的代码该写在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1215277/

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