摘要: 1 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 2 { 3 // 1.URL 4 NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/weather"]; 5 6 // 2.请求 7... 阅读全文
posted @ 2016-10-28 01:50 IOSyes 阅读(226) 评论(0) 推荐(0) 编辑
摘要: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { // 1.URL NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/order"]; // 2.请求 NSMutableURLReques... 阅读全文
posted @ 2016-10-28 00:36 IOSyes 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-10-26 22:31 IOSyes 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1 // ViewController.m 2 // 04-掌握-NSURLConnection发送GET请求 3 // 4 // Created by xiaomage on 16/2/22. 5 // Copyright © 2016年 小码哥. All rights reserved. 6 / 阅读全文
posted @ 2016-10-26 22:29 IOSyes 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-10-26 20:06 IOSyes 阅读(117) 评论(0) 推荐(0) 编辑
摘要: Access Token 访问请求标记 参数传错了 阅读全文
posted @ 2016-10-26 16:46 IOSyes 阅读(140) 评论(0) 推荐(0) 编辑
摘要: model方式 不建议采取,新特性控制器不会销毁 阅读全文
posted @ 2016-10-26 00:27 IOSyes 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 该设置的东西设置完,然后再去赋值 [self setValue:tabBar forKeyPath:@"tabBar"];//这行代码过后,tabbar的delegate就是HWTabBarViewController 如果tabBar 设置完 delegate后,再执行这行代码修改 delegat 阅读全文
posted @ 2016-10-25 18:08 IOSyes 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-10-25 15:16 IOSyes 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 加号按钮点击 现在要实现 点击加号按钮 模态出一个窗口 self present方法现不能用 是因为 这个方法是控制器的方法 只能通过一个控制器model出另一个控制器 所以 只能将加号 按钮点击事件 告诉给外面的控制器 ,再由外面控制器 模态出其他控制器 让TabBarController 成为 阅读全文
posted @ 2016-10-24 18:03 IOSyes 阅读(238) 评论(0) 推荐(0) 编辑