上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 原文地址:http://www.tuicool.com/articles/mUVBf2e 首先,在项目中我的起到了什么作用,无非就是把美工(UI设计师)给我们的图显示出来,然后再和服务器进行交互。 那个我们和服务器怎么交互呢?最简单的方式就是说话呗,但是我们要跟服务器说话必须通过我们彼此能听的懂的话 阅读全文
posted @ 2016-05-17 09:45 YouNeedCourage 阅读(926) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.delegate = self; /************************隐藏tabbar上的黑色线条***************************/... 阅读全文
posted @ 2016-05-14 17:16 YouNeedCourage 阅读(3579) 评论(0) 推荐(0) 编辑
摘要: //使用下面这中方法拨打电话后可以返回APP UIWebView*callWebview =[[UIWebView alloc] init]; NSURL *telURL =[NSURL URLWithString:@"tel:02160481700"];// 貌似tel:// 或者 tel: 都行 [callWebview loadReq... 阅读全文
posted @ 2016-05-13 12:27 YouNeedCourage 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1 CGRect rect = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); 2 UIGraphicsBeginImageContext(rect.size); 3 CGContextRef context = UIGraphicsGetCurrentContext();... 阅读全文
posted @ 2016-05-11 15:35 YouNeedCourage 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.tuicool.com/articles/3A3uIfU 方法1: 创建一个 Empty Application 工程 下面还是详细的说一下通过一个 Single View Application 工程得到一个 Empty Application 工程的方法: 1. 阅读全文
posted @ 2016-05-06 10:13 YouNeedCourage 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 原文:http://docs.jpush.cn/pages/viewpage.action?pageId=1343727 创建应用程序ID 登陆 iOS Dev Center 选择进入iOS Provisioning Portal。 在 iOS Provisioning Portal中,点击App 阅读全文
posted @ 2016-04-27 14:02 YouNeedCourage 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Certificates, Identifiers &Profiles 简介 Certificates Certificates 即 ”证书“,约等于通行证,申请证书是我们进行真机调试与发布的第一步。证书有两种: 1、 开发证书 ( Development Certificates ),主要是授权m 阅读全文
posted @ 2016-04-25 15:21 YouNeedCourage 阅读(384) 评论(0) 推荐(0) 编辑
摘要: IOS-APP提交上架流程(新手必看!2016年3月1日最新版) 原文地址:http://www.cnblogs.com/BK-12345/p/5232633.html 先大概说一下IOSAPP上架的几个步骤(详细步骤见下图): 创建证书请求文件 登录苹果开发者中心生成发布者证书(下载下来要双击一下 阅读全文
posted @ 2016-04-25 15:03 YouNeedCourage 阅读(199) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/qustdong/article/details/47295989 阅读全文
posted @ 2016-04-21 17:56 YouNeedCourage 阅读(225) 评论(0) 推荐(0) 编辑
摘要: UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 80, 80)]; view.backgroundColor = [UIColor redColor]; [self.view addSubview:view]; UIBezi 阅读全文
posted @ 2016-04-20 18:55 YouNeedCourage 阅读(527) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页