2014年11月20日
摘要: 元素控件尺寸(pts)Window(含状态栏)320 x 480Status Bar的高度20Navigation Bar的高度44含Prompt的Navigation Bar的高度74Navigation Bar的图标20×20(透明的png)Tool Bar的高度44Tool Bar的图标20×... 阅读全文
posted @ 2014-11-20 00:21 lgphp 阅读(197) 评论(0) 推荐(0) 编辑
摘要: //NSString .... NSString *str1 = @"str1"; NSLog(@"str %@",str1); //NSArray NSArray *arr1 = @[@"one",@"two",@"three",@"four",@YES,@... 阅读全文
posted @ 2014-11-20 00:17 lgphp 阅读(278) 评论(0) 推荐(0) 编辑
摘要: http://www.swiftkiller.com/?p=371http://blog.csdn.net/javayujiafeng/article/details/14163319http://www.cocoachina.com/bbs/thread.php?fid-19.htmlhttp:/... 阅读全文
posted @ 2014-11-20 00:15 lgphp 阅读(136) 评论(0) 推荐(0) 编辑
摘要: //- (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;-(id)init{... 阅读全文
posted @ 2014-11-20 00:05 lgphp 阅读(343) 评论(0) 推荐(0) 编辑
  2014年11月13日
摘要: 前言:学习ios开发有一段时间了,项目也做了两个了,今天看视频,突然发现view的frame和bound两个属性,发现bound怎么也想不明白,好像饶你了死胡同里,经过一番尝试和思考,终于弄明白bound的含义。PS:我承认我是一个很笨很笨的人。所以现在记录下来,供以后查阅,同时方便所有和我一样有疑... 阅读全文
posted @ 2014-11-13 13:10 lgphp 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 我们开发出来的APP通常要通过第三方分享到其他社交平台,如qq、微博微信等。通过分享可以提高APP的传播效率,增加APP的曝光率,因此也算是APP功能里的标配了吧。目前常用的第三方分享途径有qq、微信、微博、人人等。这些平台大多都有自己的官方第三方分享组件可用,官方文档也比较丰富。使用起来比较方便。... 阅读全文
posted @ 2014-11-13 13:09 lgphp 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 通用的stroyboard文件是通向自适应布局光明大道的第一步。在一个storyboard文件中适配iPad和iPhone的布局在iOS8中已不再是梦想。我们不必再为不同尺寸的Apple移动设备创建不同的storyboard文件,不用再苦逼的同步若干个storyboard文件中的内容。这真是一件美好... 阅读全文
posted @ 2014-11-13 13:04 lgphp 阅读(1554) 评论(1) 推荐(2) 编辑
摘要: 1. iphone/ipad大小DeviceScreen dimensions(in points)iphone and ipod320 X 480ipad768 X 10242. UIScreen bounds and applicationFrame[UISCreen mainScreen].b... 阅读全文
posted @ 2014-11-13 12:50 lgphp 阅读(420) 评论(0) 推荐(0) 编辑
  2014年11月8日
摘要: 一下addChildViewController,一个ViewController可以添加多个子ViewController,但是这 些子ViewController只有一个是显示到父视图中的,可以通过transitionFromViewController:toViewController:dur... 阅读全文
posted @ 2014-11-08 10:14 lgphp 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 第一种方法:ViewControllerB *vcB = [self.storyboard instantiateViewControllerWithIdentifier:@"Name of View Controller B"];[vcB setModalTransitionStyle:UIMo... 阅读全文
posted @ 2014-11-08 10:01 lgphp 阅读(552) 评论(0) 推荐(0) 编辑