1.文件上传的示例代码 // 设置url NSURL *url = [NSURL URLWithString:@"http://localhost/photo"]; // 设置请求 self.postRequest = [ASIFormDataRequest requestWithURL:ur...
分类:
移动开发 时间:
2015-01-26 20:58:00
阅读次数:
226
1.方法一:如果NSData数据很大,把很大的数据装进内存,内存肯定会爆掉,所以这种方法不可取 // 设置url NSURL *url = [NSURL URLWithString:@"http://localhost/123.jpg"]; // 设置请求 self.request = [AS...
分类:
移动开发 时间:
2015-01-26 10:10:02
阅读次数:
155
发POST请求,需要用到专门的类:#import "ASI/ASIFormDataRequest.h"示例代码: // 设置url NSURL *url = [NSURL URLWithString:@"http://api.openweathermap.org/data/2.5/weather"....
分类:
移动开发 时间:
2015-01-26 06:31:33
阅读次数:
250
这里用的是CIImage,同样可以转换成UIImage。内容比较简单,适合初学者。(自己忘记时看看,严禁商业转载)
//第一种,从应用程序包中(资源文件)加载图像
NSString * path = [[NSBundle
mainBundle] pathForResource:@"1"
ofType:@"png"];
NSURL * pathURL = [N...
分类:
其他好文 时间:
2015-01-21 10:19:57
阅读次数:
166
iOS开发网络篇—NSURLConnection基本使用iOS开发网络篇—NSURLConnection基本使用一、NSURLConnection的常用类(1)NSURL:请求地址(2)NSURLRequest:封装一个请求,保存发给服务器的全部数据,包括一个NSURL对象,请求方法、请求头、请求体...
分类:
移动开发 时间:
2015-01-18 15:38:30
阅读次数:
242
[1].[代码] [其他]代码 跳至 [1]
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
NSURL*
url = [NSURL URLWithString:@"xxx"];
ASIFormDataRequest*
re...
分类:
移动开发 时间:
2015-01-17 18:11:20
阅读次数:
244
1、給iPhone安裝google map app,因為之後會使用這個程序進行導航2、在自己的App中需要進行導航的地方,加入下列代碼if ([[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString:@"comgo...
分类:
移动开发 时间:
2015-01-07 20:46:17
阅读次数:
205
//?iOS8?之前不可用
[[UIApplication?sharedApplication]?openURL:[NSURL?URLWithString:UIApplicationOpenSettingsURLString]];...
分类:
移动开发 时间:
2015-01-07 17:02:36
阅读次数:
188
NSString *IP =
@"0.0.0.0";
//http://61.4.185.48:81/g/(中国天气网的接口)
NSURL *url = [NSURL
URLWithString:@"http://61.4.185.48:81/g/"];
NSURLRequest *request = [NSURLRequest
request...
分类:
移动开发 时间:
2015-01-06 15:43:12
阅读次数:
154
在移动开发中我们会经常需要调用手机的拨打电话功能、发短信功能和发邮件功能,以下是我总结的方法://1.打电话
//方法1 最常用方法
NSURL *telUrl = [NSURL URLWithString:"tel://13161906451"];
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
[webV...
分类:
移动开发 时间:
2015-01-06 10:07:57
阅读次数:
126