
OC
dj_刘小逸
这个作者很懒,什么都没留下…
展开
-
IOS根据两个经纬度计算相距距离
//第一种苹果自带的 CLLocation *orig=[[[CLLocation alloc] initWithLatitude:[mainDelegate.latitude_self doubleValue] longitude:[mainDelegate.longitude_self doubleValue]] autorelease]; C原创 2015-09-14 11:06:18 · 707 阅读 · 0 评论 -
//获取lable高度 并调整行间距等功能
+ (float)freshLabelSpacingAndGetHeightWithTxt:(NSString *)txt font:(UIFont *)font原创 2015-09-14 15:13:59 · 639 阅读 · 0 评论 -
//16进制颜色(html颜色值)字符串转为UIColor
+ (UIColor *) colorWithHexString: (NSString *) stringToConvert { NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] upper原创 2015-09-14 15:40:16 · 571 阅读 · 0 评论 -
IOS 开发,调用打电话,发短信,打开网址
1、调用 自带mail [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]]; 2、调用 电话phone [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"原创 2015-09-14 16:36:03 · 427 阅读 · 0 评论 -
iOS截屏代码
- (UIImage *) captureScreen { UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow]; CGRect rect = [keyWindow bounds]; UIGraphicsBeginImageContext(rect.size); CGConte原创 2015-09-17 15:40:17 · 519 阅读 · 0 评论