- How would I convert an NSMutableArray filled of UNIX dates to standard dates?
- NSDate *fulltime = [NSDate dateWithTimeIntervalSince1970:[time objectAtIndex:indexPath.row]];
- error: incompatible type for argument 1 of 'dateWithTimeIntervalSince1970:'
- NSDate *fulltime = [NSDate dateWithTimeIntervalSince1970:
- [[time objectAtIndex:indexPath.row] doubleValue]];