上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: #define IOS7 ([[UIDevice currentDevice].systemVersion doubleValue]>=7.0)告诉系统不要把图片渲染成系统的颜色(蓝色) controller.tabBarItem.selectedImage=[[UIImage imageNamed... 阅读全文
posted @ 2014-11-23 22:53 銱ル╬鎯噹 阅读(179) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad{ [super viewDidLoad]; UIScrollView *scrollview=[[UIScrollView alloc] initWithFrame:[UIScreen mainScreen].bounds]; scrollview.c... 阅读全文
posted @ 2014-11-22 23:56 銱ル╬鎯噹 阅读(120) 评论(0) 推荐(0) 编辑
摘要: UIGestureRecognizer基类是一个抽象类,我们主要是使用它的子类(名字包含链接,可以点击跳到ios Developer library,看官方文档):UITapGestureRecognizerUIPinchGestureRecognizerUIRotationGestureRecog... 阅读全文
posted @ 2014-11-22 23:45 銱ル╬鎯噹 阅读(136) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad{ [super viewDidLoad]; UITextField *input=[[UITextField alloc] initWithFrame:CGRectMake(0, 100, 200, 100)]; self.textfield=input... 阅读全文
posted @ 2014-11-22 23:39 銱ル╬鎯噹 阅读(137) 评论(0) 推荐(0) 编辑
摘要: typedef enum{alertviewType1,alertviewType2,} alertviewType;@interface ZBMainViewController ()@end@implementation ZBMainViewController- (void)viewDidLo... 阅读全文
posted @ 2014-11-22 00:54 銱ル╬鎯噹 阅读(139) 评论(0) 推荐(0) 编辑
摘要: ZBMainViewController *main=[[ZBMainViewController alloc] init]; ZBBaseController *navigationcontroller=[[ZBBaseController alloc] initWithRootViewCo... 阅读全文
posted @ 2014-11-22 00:18 銱ル╬鎯噹 阅读(228) 评论(0) 推荐(0) 编辑
摘要: //RootViewController.m- (void)viewDidLoad { // Do any additional setup after loading the view. [super viewDidLoad]; // Do any additional setu... 阅读全文
posted @ 2014-11-22 00:11 銱ル╬鎯噹 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1. 文件CMD + N: 新文件CMD + SHIFT + N: 新项目CMD + O: 打开CMD + S: 保存CMD + SHIFT + S: 另存为CMD + W: 关闭窗口CMD + SHIFT + W: 关闭文件2. 编辑CMD + [: 左缩进CMD + ]: 右缩进CMD + CT... 阅读全文
posted @ 2014-11-22 00:08 銱ル╬鎯噹 阅读(204) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad{ [super viewDidLoad]; UITapGestureRecognizer *gesture=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(Close... 阅读全文
posted @ 2014-11-21 23:57 銱ル╬鎯噹 阅读(233) 评论(0) 推荐(0) 编辑
摘要: [[UIApplication sharedApplication]setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade]; 或者在info.plit里面将status bar is initiallyhidden的键值改为YES两个的不同是 第二种方法直接启动的时候隐藏,第一种方法是启动后出现再隐藏 阅读全文
posted @ 2012-10-17 14:42 銱ル╬鎯噹 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页