このアプリについてのifステートメントに少し問題がありdate.name
ますニュースアイテム:誰かが私を助けることができますか?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
MoreMenu *data = [self.fetchedResultsController objectAtIndexPath:indexPath];
if ([data.name compare:@"about this app"]) {
NSLog(@"About this app : %@", data.name);
} else {
NSLog(@"News item : %@", data.name);
}
}