- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
CGRect contentFrame = CGRectMake(42, 7, 245, 30);
UILabel *contentLabel = [[UILabel alloc] initWithFrame:contentFrame];
我在很多地方都看到了上面的代码,我想知道,那段代码的来源是什么?当我使用 GUI 做某事时,xcode 可以自动创建它吗?
如果没有,我CGRectMake(42, 7, 245, 30)
如何在不计算像素的情况下设置这些数字呢?
谢谢