摘要: - (UIStatusBarStyle)preferredStatusBarStyle{ return UIStatusBarStyleLightContent;}//- (BOOL)prefersStatusBarHidden//for iOS7.0{ return YES;}需要隐藏... 阅读全文
posted @ 2015-02-13 19:31 爱生活爱代码 阅读(119) 评论(0) 推荐(0) 编辑
摘要: //// AAAAViewController.m// hengp//// Created by 朱信磊 on 15/2/13.// Copyright (c) 2015年 niit. All rights reserved.//#import "AAAAViewController.h"#... 阅读全文
posted @ 2015-02-13 19:29 爱生活爱代码 阅读(350) 评论(0) 推荐(0) 编辑
摘要: //// CoreAnimationEffect.h// CoreAnimationEffect//// Created by VincentXue on 13-1-19.// Copyright (c) 2013年 VincentXue. All rights reserved.// #... 阅读全文
posted @ 2015-02-11 13:31 爱生活爱代码 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.cocoachina.com/bbs/read.php?tid=1101681.概述UIKit直接将动画集成到UIView类中,实现简单动画的创建过程。UIView类定义了几个内在支持动画的属性声明,当这些属性发生改变时,视图为其变化过程提供内建的动画支持。执行动画所需... 阅读全文
posted @ 2015-02-11 13:29 爱生活爱代码 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1 1获取系统语言设置 2 3 NSUserDefaults *userDefault = [NSUserDefaults standardUserDefaults]; 4 5 NSArray *languages = [userDefault obje... 阅读全文
posted @ 2015-02-11 13:26 爱生活爱代码 阅读(1321) 评论(0) 推荐(0) 编辑
摘要: -(void)initView{ UISwipeGestureRecognizer *left_gesture=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(action:)]; [left_g... 阅读全文
posted @ 2015-01-21 10:45 爱生活爱代码 阅读(948) 评论(0) 推荐(0) 编辑
摘要: 首先,UIControlEvents有这个几种:UIControlEventTouchDown = 1 1)UIControlEventTouchDragInside = 1 << 2,UIControlEventTouchDragOutside = 1 << ... 阅读全文
posted @ 2015-01-16 14:43 爱生活爱代码 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: if (IOS7) { self.tabBarController.tabBar.barTintColor = kTAB_BAR_GB_COLOR; }else{ self.tabBarController.tabBar.tintColor = kTAB_BAR_... 阅读全文
posted @ 2015-01-15 11:43 爱生活爱代码 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: 1.自定义UICollectionView2.实现协议 UICollectionViewFlowLayout *flowLayout=[[UICollectionViewFlowLayout alloc] init]; flowLayout.itemSize=CGSizeMak... 阅读全文
posted @ 2015-01-15 10:13 爱生活爱代码 阅读(2828) 评论(0) 推荐(0) 编辑
摘要: 在加载网页时给一个timer定时器,规定超时时间,然后再超时时间的方法中提示超时如果没有超时,则在webview协议中的“加载完成”方法中 取消timer定时器- (void)openWebView{ if (timer) { [timer invalidate]; } ... 阅读全文
posted @ 2015-01-15 10:01 爱生活爱代码 阅读(1439) 评论(0) 推荐(0) 编辑