摘要: iOS 开发 中级:UIToolbar,UINavigationBar,UITabBar,UIBarButtonItem,UITabBarItem自定义方法总结分类:iOS 开发 中级2013-03-19 18:083468人阅读评论(0)收藏举报开发自定义对于UIToolbar,UINavigat... 阅读全文
posted @ 2015-05-20 16:24 certify 阅读(145) 评论(0) 推荐(0) 编辑
摘要: UIPageViewController-浅析(2013-03-23 20:33:15)转载▼标签:uipageviewcontroller分页控件分页控件协议iosxcodeit分类:UI控件一、UIPageViewController概念控件为我们提供了一种像翻书效果的一种控件。我们可以通过使用... 阅读全文
posted @ 2015-05-20 16:04 certify 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 一片枫叶追求卓越,成功就会在不经意间追上你跟随自己的节奏学习,思考,总结,找到自己,别人才会找到你下一篇:基于NSBundle的工程结构UITabBarController详解UITabBarController使用详解 UITabBarController是IOS中很常用的一个viewContr... 阅读全文
posted @ 2015-05-20 15:55 certify 阅读(124) 评论(0) 推荐(0) 编辑
摘要: @property(nonatomic) CGPoint contentOffset; // 记录UIScrollView滚动的位置@property(nonatomic) CGSize contentSize; // 内容尺寸(能滚动的范围)@property(nonatomic) UIEdgeI... 阅读全文
posted @ 2015-05-20 15:45 certify 阅读(110) 评论(0) 推荐(0) 编辑
摘要: UIScrollView的属性总结属性作用CGPoint contentOffSet监控目前滚动的位置CGSize contentSize滚动范围的大小UIEdgeInsets contentInset视图在scrollView中的位置iddelegate设置协议BOOL directionalLo... 阅读全文
posted @ 2015-05-08 17:15 certify 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #import@interfaceTextViewController:UIViewController{UITextView*textView;}@property(nonatomic,retain)UITextView*textView;@end在.m文件中初始化这个textview,写入代码如... 阅读全文
posted @ 2015-05-06 17:18 certify 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 包括以下几类://继承自NSObject:(暂列为控件) UIColor*_color; //颜色 UIImage*_image; //图像 //继承自UIView:只能相应手势UIGestureRecognizer事件,如果本事不响应会将事件action向superview传递 UILabel*_... 阅读全文
posted @ 2015-05-06 16:45 certify 阅读(118) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com 网站 阅读全文
posted @ 2015-05-06 16:07 certify 阅读(112) 评论(0) 推荐(0) 编辑
摘要: self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKey... 阅读全文
posted @ 2015-05-06 15:57 certify 阅读(141) 评论(0) 推荐(0) 编辑
摘要: self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKey... 阅读全文
posted @ 2015-05-06 15:56 certify 阅读(136) 评论(0) 推荐(1) 编辑