我在.m
文件中设置了
- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{
static NSString *cellIdentifier = @"Cell";
documentCustomCell *cell = (documentCustomCell*)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil){
cell = [[documentCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.titleText.text = cellFileName;
[cell.titleText setNeedsDisplay];
}
请帮忙 做PDF应用程序