iOS开发iOS Developer

iOS注意点

2017-01-25  本文已影响131人  不进则退
int -> NSInteger  
unsigned -> NSUInteger  
float -> CGFloat  
动画时间 -> NSTimeInterval
- (void)viewWillAppear:(BOOL)animated
{
      [super viewWillAppear:animated];  
      //屏蔽右滑返回手势
      self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}
// 清除cookies
NSHTTPCookie *cookie;
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [storage cookies]) { [storage deleteCookie:cookie];}
// 清除UIWebView的缓存
[[NSURLCachesharedURLCache] removeAllCachedResponses];
NSString*appid =@"725296055";       
NSString*str = [NSStringstringWithFormat:@"itms-apps://itunes.apple.com/cn/app/id%@?mt=8", appid];
// 或者也可以写http://
NSURL*url = [NSURL URLWithString:str];
[[UIApplicationsharedApplication]openURL:url];
// 新建定时器
CADisplayLink*link = [CADisplayLinkdisplayLinkWithTarget:self selector:@selector(update)];
[link addToRunLoop: [NSRunLoop mainRunLoop]forMode:NSDefaultRunLoopMode];
self.link= link;
// CADisplayLink 作为成员变量的时候属性参数strong
// 取消定时器:
[self.link invalidate];
self.link=nil;
    //设定Tabbar的点击后的颜色
    [[UITabBar appearance] setTintColor:[UIColor redColor]];
    //设定Tabbar的颜色
    [[UITabBar appearance] setBarTintColor:[UIColor whiteColor]];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:img style:UIBarButtonItemStylePlain target:self action:@selector(onBack:)];
self.navigationController.interactivePopGestureRecognizer.delegate = (id<UIGestureRecognizerDelegate>)self;
NSURLRequest *request = [[NSURLRequest alloc]initWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60];
//参数cachePolicy表示缓存策略,枚举类型,值有以下几种:
NSURLRequestUseProtocolCachePolicy = 0 NSURLRequest默认的cache policy,使用Protocol协议定义。是最能保持一致性的协议。
NSURLRequestReloadIgnoringCacheData = 1 忽略缓存直接从原始地址下载
NSURLRequestReturnCacheDataElseLoad = 2  只有在cache中不存在data时才从原始地址下载
NSURLRequestReturnCacheDataDontLoad = 3  只使用cache数据,如果不存在cache,请求失败;次策略用于没有建立网络连接离线模式;
NSURLRequestReloadIgnoringLocalAndRemoteCacheData = 4,  忽略本地和远程的缓存数据,直接从原始地址下载,与NSURLRequestReloadIgnoringCacheData类似。
NSURLRequestReloadRevalidatingCacheData = 5  验证本地数据与远程数据是否相同,如果不同则下载远程数据,否则使用本地数据。
/** *  是否允许多个手势识别器同时有效 *  Simultaneously : 同时地 */
 - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{ 
   return YES;
}
int r = arc4random_uniform(255+1); // 表示生成0~255的随机整数     
UIColor*color = [UIColor colorWithRed:(r)/255.0 green:(r)/255.0 blue:(r)/255.0 alpha:1.0];
CAKeyframeAnimation *shake = [CAKeyframeAnimation  animation];
shake.keyPath = @“transform.translation.x”
shake.duration = 0.15;
CGFloat delta = 10;
shake.values = @[@0, @( - delta), @0, @(delta)];
shake.repeatCount = 2;
[self.view.layer addAnimation: shake forKey:nil];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];// 启动状态栏网络请求指示  
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];// 关闭状态来网络请求指示
上一篇 下一篇

猜你喜欢

热点阅读