我已经设置了UIViewController
一个表格视图并添加了单元格。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *identifier = nil;
NSString *task = [self.tasks objectAtIndex:indexPath.row];
NSRange urgentRange = [task rangeOfString:@"URGENT"];
if (urgentRange.location == NSNotFound) {
identifier = @"plainCell";
} else {
identifier = @"attentionCell";
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
// Configure the cell...
UILabel *cellLabel = (UILabel *)[cell viewWithTag:1];
NSMutableAttributedString *richTask = [[NSMutableAttributedString alloc]
initWithString:task];
NSDictionary *urgentAttributes =
@{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:24],
NSStrokeWidthAttributeName : @3.0};
[richTask setAttributes:urgentAttributes
range:urgentRange];
cellLabel.attributedText = richTask;
return cell;
}
我正在尝试学习故事板并创建了这个示例代码。我没有看到或者我能够发现我在做什么错误。从昨天开始,我就一直坚持这一点,而不是理解这个问题。
我请求你的帮助,让我继续学习。
这是我正在尝试创建的示例。XCODE 项目可以从以下网址下载:
https://dl.dropboxusercontent.com/u/72451425/Simple%20Storyboard.zip
请查看代码并帮助我继续前进。