iOS 小知识点(持续更新)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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];
5、百度地图自定义大头针图片
- (BMKAnnotationView *)mapView:(BMKMapView *)view viewForAnnotation:(id <BMKAnnotation>)annotation { // 生成重用标示identifier static NSString *AnnotationViewID = @"AnnotationViewID"; // 检查是否有重用的缓存 BMKAnnotationView* annotationView = [view dequeueReusableAnnotationViewWithIdentifier:AnnotationViewID]; ((BMKPinAnnotationView*)annotationView).pinColor = BMKPinAnnotationColorGreen; annotationView.image = [UIImage imageNamed:@"XXX.png"]; }
以上是关于iOS 小知识点(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章