2015年3月23日

Objective-C 2.0属性(Property)介绍

摘要: 通常在声明一些成员变量时会看到如下声明方式: @property (参数1,参数2) 类型 名字; 这里我们主要分析在括号中放入的参数,主要有以下三种: setter/getter方法(assign/retain/copy/weak)读写属性(readwrite/readonly)atomicity 阅读全文

posted @ 2015-03-23 08:33 sunyaxue 阅读(170) 评论(0) 推荐(0)

UIKit继承结构和UIView.h文件详解

摘要: @interface UIView : UIResponder<NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem> /** * 通过一个frame来初始化一个UI控件 */ - (id)initWithFrame:(CGRect 阅读全文

posted @ 2015-03-23 07:57 sunyaxue 阅读(228) 评论(0) 推荐(0)

iOS导航栏主题

摘要: 主要是取得导航栏的appearance对象,操作它就设置导航栏的主题UINavigationBar *navBar = [UINavigationBar appearance];常用主题设置导航栏背景- (void)setBackgroundImage:(UIImage *)backgroundIm... 阅读全文

posted @ 2015-03-23 07:48 sunyaxue 阅读(369) 评论(0) 推荐(0)

导航