02 2016 档案

摘要:project -->build setting enable bitcode 也是no targets ...build setting enable bitconde 也是no 阅读全文
posted @ 2016-02-29 14:45 zhen_zhen 阅读(123) 评论(0) 推荐(0)
摘要:iOS开发者证书的那些事 字数1449 阅读71 评论0 喜欢3 👉苹果官方文档 Certificates 证书 我们从开发者中心了解到,开发者证书分为两种类型:Development Certificate(开发证书)和Production Certificate(发布证书)。两种证书都有对应的 阅读全文
posted @ 2016-02-29 11:20 zhen_zhen 阅读(219) 评论(0) 推荐(0)
摘要:iOS的版本号,一个叫做Version,一个叫做Build,这两个值都可以在Xcode 中选中target,点击“Summary”后看到。Version在plist文件中的key是“CFBundleShortVersionString”,和AppStore上的版本号保持一致,Build在plist中 阅读全文
posted @ 2016-02-28 00:54 zhen_zhen 阅读(139) 评论(0) 推荐(0)
摘要:.h // // DBOperation.h // 2DataBaseSecond // // Created by Cecilia on 14-10-16. // Copyright (c) 2014年 Cecilia. All rights reserved. // #import <Found 阅读全文
posted @ 2016-02-27 23:58 zhen_zhen 阅读(187) 评论(0) 推荐(0)
摘要:2:下面的release debug release debug release .... 2016-02-272016-02-272016-02-2723:50:56 证书失效问题:我用的第二种 好了 今天上班,iOS开发证书莫名都失效了 字数354 阅读274 评论0 喜欢5 今早上班打包直接报 阅读全文
posted @ 2016-02-27 23:51 zhen_zhen 阅读(122) 评论(0) 推荐(0)
摘要:iPhone屏幕尺寸、分辨率及适配 1.iPhone尺寸规格 设备 iPhone 宽 Width 高 Height 对角线 Diagonal 逻辑分辨率(point) Scale Factor 设备分辨率(pixel) PPI 3GS 2.4 inches (62.1 mm) 4.5 inches 阅读全文
posted @ 2016-02-25 13:20 zhen_zhen 阅读(175) 评论(0) 推荐(0)
摘要:cellhelp.backgroundColor=RGB(232, 231,231); UILabel *show=[[UILabel alloc]initWithFrame:CGRectMake(15, 10, SCREEN_WIDTH-30, 20)]; show.font=SYSTEMFONT 阅读全文
posted @ 2016-02-24 13:53 zhen_zhen 阅读(112) 评论(0) 推荐(0)
摘要:if ([[UIDevice currentDevice].systemVersion floatValue]>=8.0f) {UIUserNotificationSettings *setting = [[UIApplication sharedApplication] currentUserNo 阅读全文
posted @ 2016-02-24 13:52 zhen_zhen 阅读(123) 评论(0) 推荐(0)
摘要:[self.disease addObjectsFromArray:diseaseDic[@"data"]]; // NSDictionary *des=[NSDictionary dictionaryWithObject:@"" forKey:@"des"]; NSDictionary *name 阅读全文
posted @ 2016-02-23 17:12 zhen_zhen 阅读(390) 评论(0) 推荐(0)
摘要:1:_descrView = [[UITextView alloc]initWithFrame:CGRectMake(15, CGRectGetMaxY(describelab.frame)+10, SCREEN_WIDTH-30, 150)]; _descrView.delegate = self 阅读全文
posted @ 2016-02-23 11:39 zhen_zhen 阅读(222) 评论(0) 推荐(0)
摘要://gzz0223 //计算文本的大小 NSString *srring=[NSString stringWithFormat:@"%@",[dataDic objectForKey:@"content"]]; NSUserDefaults * userdefaults =USERDEFAULT; 阅读全文
posted @ 2016-02-23 11:32 zhen_zhen 阅读(223) 评论(0) 推荐(0)
摘要:- (BOOL)prefersStatusBarHidden{ return YES; } //隐藏bar 2:让键盘消失 //// [_lastField resignFirstResponder]; // [self.view endEditing:YES];//gzz0223 // // // 阅读全文
posted @ 2016-02-23 09:43 zhen_zhen 阅读(195) 评论(0) 推荐(0)
摘要:didfinishlauch appdelegate 中 // 01 gzz022 版本更新 [self VersionButton]; //02 gzz0222 提示自动更新 -(void)VersionButton{ NSString *string=[NSString stringWithCo 阅读全文
posted @ 2016-02-22 15:56 zhen_zhen 阅读(236) 评论(0) 推荐(0)
摘要://gzz0220 网络检测通知 // 网络监测 // 监测网络情况 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name: kReachability 阅读全文
posted @ 2016-02-22 13:15 zhen_zhen 阅读(150) 评论(0) 推荐(0)
摘要:Reachability.h/m /* File: Reachability.h Abstract: Basic demonstration of how to use the SystemConfiguration Reachablity APIs. Version: 3.5 Disclaimer 阅读全文
posted @ 2016-02-22 13:14 zhen_zhen 阅读(231) 评论(0) 推荐(0)
摘要:#import "MedDetitleViewController.h" @interface MedDetitleViewController ()<UIScrollViewDelegate,UIWebViewDelegate>{ UIImageView *imagershujuMed; UILa 阅读全文
posted @ 2016-02-20 17:54 zhen_zhen 阅读(117) 评论(0) 推荐(0)
摘要://下拉刷新 - (void)Downrefresh { __weak MedicationCollectionViewController *puad = self; [puad.MedicatableView addHeaderWithCallback:^{ [puad.MedicaMutarr 阅读全文
posted @ 2016-02-20 17:53 zhen_zhen 阅读(128) 评论(0) 推荐(0)
摘要://用药宝典 - (void)MedicaRequest { [MBProgressHUD showHUDAddedTo:self.view animated:YES]; AFHTTPRequestOperationManager *manager = [[AFHTTPRequestOperatio 阅读全文
posted @ 2016-02-20 17:52 zhen_zhen 阅读(174) 评论(0) 推荐(0)
摘要://start -(void)clearCashSelf{ MCLog(@"NSHomeDirectory 沙盒路径----%@",NSHomeDirectory()); // UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"清除缓 阅读全文
posted @ 2016-02-20 17:36 zhen_zhen 阅读(268) 评论(0) 推荐(0)
摘要:(转载)使用Xcode7的Instruments检测解决iOS内存泄露 字数596 阅读505 评论1 喜欢3 来自 iOS丶Country的文章 地址http://www.cnblogs.com/iOSv587country/p/4862989.html 作为一名iOS开发攻城狮,在苹果没有出AR 阅读全文
posted @ 2016-02-19 11:10 zhen_zhen 阅读(250) 评论(0) 推荐(0)
摘要:Xcode7之后常见问题整理 字数1476 阅读6769 评论5 喜欢22 一.Xcode7,iOS9之后传出来的什么Xcode有鬼,被植入代码片段什么的,可以看看,了解一下http://drops.wooyun.org/news/8864 二.bitcode问题--未正确设置可能导致编译问题。适配 阅读全文
posted @ 2016-02-19 11:01 zhen_zhen 阅读(184) 评论(0) 推荐(0)
摘要:ios 判断app程序第一次启动方法 if(![[NSUserDefaults standardUserDefaults] boolForKey:@"firstStart"]){ [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@" 阅读全文
posted @ 2016-02-19 09:38 zhen_zhen 阅读(103) 评论(0) 推荐(0)
摘要://银行卡支付 UIView *line123=[[UIView alloc]initWithFrame:CGRectMake(0, 79, SCREEN_WIDTH, 2)]; line123.backgroundColor=RGB(208, 209, 208); [zhifuPatternVie 阅读全文
posted @ 2016-02-18 13:24 zhen_zhen 阅读(124) 评论(0) 推荐(0)
摘要:UIImageView *imageBim1 = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"jianbian5"]]; imageBim1.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN 阅读全文
posted @ 2016-02-01 11:59 zhen_zhen 阅读(149) 评论(0) 推荐(0)