Objective-C
文章平均质量分 74
李昊的Blog
这个作者很懒,什么都没留下…
展开
-
添加一个能够自适应字数的UILabel对象到ScrollView
NSString * value =_currentBook.content; UILabel * aLabel = [[UILabelalloc] initWithFrame:CGRectMake(0, 0, 0, 0)];//设置初始大小 aLabel.text = value; [aLabelsetNumberOfLines:0];原创 2014-01-08 22:51:22 · 1098 阅读 · 0 评论 -
Objective-C NSString、NSArray、NSDictionary、NSData 存取至Document
//-(void)writeButtonAction:(id)sender{// //获得沙盒路径// NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);// //NSDocumentDirectory documents文件夹// // NSUserD原创 2014-01-10 14:09:07 · 966 阅读 · 0 评论 -
UIImage NSData转换
-(void)writeButtonAction:(id)sender{ NSString * path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]; NSString * newPath = [NSString stringW原创 2014-01-10 15:07:32 · 765 阅读 · 0 评论 -
OC中的SQLite3使用
获取Bandle数据库至沙盒中//// DB.h// LocalStorage//// Created by LiHao on 14-1-10.// Copyright (c) 2014年 LiHao. All rights reserved.//#import #import //库文件只能import@interface DB : NSObject+(原创 2014-01-11 11:08:46 · 2985 阅读 · 0 评论 -
Face++ 第三方类库的使用文档
Face++主要实现人脸的扫描,定位五官位置。判断微笑程度,年龄等。实现人脸识别等。下载地址:http://www.faceplusplus.com.cn以下是对此类库的使用笔记//// RootViewController.m// FacePlusPlusDemo_and_SDK//// Created by lihao原创 2014-03-26 20:10:07 · 6736 阅读 · 0 评论 -
CGContext画线
1 前言得到图形环境,然后用 CGContextMoveToPoint 和 CGContextAddLineToPoint 函数来画线。2 代码实例ZYViewControllerView.m [plain]- (void)drawRect:(CGRect)rect{ [self drawRooftopAtTopPointof:CGPointMa原创 2014-03-26 20:12:34 · 919 阅读 · 0 评论