iOS 小知识点

 

1、如何通过代码设置Button  title的字体大小

设置Button.titleLabel.font = [UIFont systemFontOfSize:<#(CGFloat)#>] ;

 

2、获取当前时间

    NSDate *timeDate=[NSDate date];
    
    NSDateFormatter * dateformatter=[[NSDateFormatter alloc] init];
    
    [dateformatter setDateFormat:@"YYYYMMddHHmmsssss"];
    
    NSString *locationString=[dateformatter stringFromDate:timeDate];

 

3、判断字符串是否为空字符的方法

- (BOOL) isBlankString:(NSString *)string {
    if (string == nil || string == NULL) {
        return YES;
    }
    if ([string isKindOfClass:[NSNull class]]) {
        return YES;
    }
    if ([[string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] length]==0) {
        return YES;
    }
    return NO;
}

 

4、tableView优化

    //刷新整个表格
    [_tableView reloadData];
    
    //刷新当前行
    [_tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

 

你可能感兴趣的:(iOS 小知识点)