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