上一页 1 ··· 5 6 7 8 9 10 下一页

2014年7月30日

摘要: ios7以上已经摒弃 sizeWithFont 这个方法,需要用到 boundingRectWithSize 来获取文字的高度123456789101112UIFont *font = [UIFont fontWithName:@"Arial" size:14];//跟label的字体大小一样CGS... 阅读全文
posted @ 2014-07-30 13:35 恒山之阳 阅读(250) 评论(0) 推荐(0) 编辑
摘要: // 视图抖动动画+ (void)shakeView:(UIView *)view duration:(CGFloat)fDuration{if (view && (fDuration >= 0.1f)){CABasicAnimation* shake = [CABasicAnimation ani... 阅读全文
posted @ 2014-07-30 12:10 恒山之阳 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 直接调用可以出现一个加载框视图12345678910111213141516171819202122232425262728+(UIView*)LoadingView{AppDelegate* del = (AppDelegate*)[[UIApplicationsharedApplication]... 阅读全文
posted @ 2014-07-30 12:08 恒山之阳 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 根据指定日期与现在日期时间对比相差几周几月1234567891011121314151617181920212223242526272829303132333435#define knewsTimeFormat @"yyyyMMddHHmmss" //你要传过来日期的格式#define kLocal... 阅读全文
posted @ 2014-07-30 12:04 恒山之阳 阅读(207) 评论(0) 推荐(0) 编辑
摘要: [myTableView setContentOffset:CGPointMake(0, 100) animated:YES]; 阅读全文
posted @ 2014-07-30 12:01 恒山之阳 阅读(141) 评论(0) 推荐(0) 编辑
摘要: imageView.layer.masksToBounds = YES ;imageView.layer.cornerRadius =8.0 //设置图片圆角的尺度 阅读全文
posted @ 2014-07-30 12:00 恒山之阳 阅读(130) 评论(0) 推荐(0) 编辑

2014年7月29日

摘要: 从一个视图控制器切换到另一个视图控制器的几种方式1,模态(modal)画面的显示方法:例如iphone通讯录管理程序中,追加新的通讯纪录时,就是使用这种模态画面例:点击一个按钮,进入另一个界面- (void)goForward{ ModalViewController* modalView = [[... 阅读全文
posted @ 2014-07-29 15:53 恒山之阳 阅读(399) 评论(0) 推荐(0) 编辑

2014年7月25日

摘要: http://www.cnblogs.com/QM80/p/3647819.html如果要修改对象的属性值1.一般情况下是直接利用对象属性的set方法来修改: Student *stu = [[Student alloc] init]; // set方法的两种书写格式 [stu s... 阅读全文
posted @ 2014-07-25 18:15 恒山之阳 阅读(142) 评论(0) 推荐(0) 编辑

2014年7月15日

摘要: 其实Xcode也可以像很轻松地给方法添加注释。VVDocument就是这样一个插件,该程序开源在github上面,通过它可以让xocde的注释变得非常简单!项目开源地址:点击这里下载使用方法将项目从github上面先down下来。用xcode打开,然后cmd+B,编译你成后cmd+Q关闭xcode,... 阅读全文
posted @ 2014-07-15 20:37 恒山之阳 阅读(405) 评论(0) 推荐(0) 编辑

2014年7月9日

摘要: iPhone开发中常常需要将对象持久化处理,或者将数据文件反序列化,便于存储用户的配置、习惯、以及保存加载的数据等。一般对象序列化的方式有四种:plist,NSUserDefaults,sqlite以及Core Data。plist和sqlite数据库是最常用的方法。对于plist:新建plist文... 阅读全文
posted @ 2014-07-09 10:24 恒山之阳 阅读(230) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页

导航