码迷,mamicode.com
首页 >  
搜索关键字:nsurl    ( 646个结果
iOS网络编程之同步、异步、请求队列 2014-12-7
1. 同步意为着线程阻塞,在主线程中使用此方法会不响应任何用户事件。所以,在应用程序设计时,大多被用在专门的子线程增加用户体验,或用异步请求代替。-(IBAction)grabURL:(id)sender { NSURL*url=[NSURLURLWithString:@"http://allsee...
分类:移动开发   时间:2014-12-08 10:34:25    阅读次数:176
IOS 判断相册是否允许访问
ALAssetsLibrary*library=[[ALAssetsLibraryalloc]init];[librarywriteImageToSavedPhotosAlbum:p_w_picpath.CGImageorientation:p_w_picpath.p_w_picpathOrientationcompletionBlock:^(NSURL*asSetUrl,NSError*error){if(error){UIAlertView*alert=[[UIAlertViewalloc]initWit..
分类:移动开发   时间:2014-11-28 18:33:52    阅读次数:167
iOS NSURLConnection&&JSON解析
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; // 设置URL [request setURL:[NSURL URLWithString:@"http://www.baidu.com"]]; //请求服务器的.....
分类:移动开发   时间:2014-11-28 16:06:56    阅读次数:156
AFNetworking 请求队列
新鲜出炉AFNetworking 请求队列NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; AFHTTPRe.....
分类:Web程序   时间:2014-11-27 17:54:21    阅读次数:143
在iOS系统中使用fopen函数
这些天在应用中用到openssl编解码的时候遇到用fopen打开文件拿不到FILE的情况,造成crash,最后得到解决,以下是记录: 因为应用底层有部分代码是C编写的,在这里要打开一个文件来读取数据,一开始在Objective-C中创建文件的时候是用的NSURL,传到C代码中的时候使用[[url absoluteString]UTF8String],在fopen的时候拿到的fd是-...
分类:移动开发   时间:2014-11-27 14:30:52    阅读次数:184
iOS 前端和后端交互 get请求 post请求
get请求: 把我们想要获取的用户名和密码加到url后面,发送request请求到服务器,服务器去验证它(数据库)有没有相同的用户名和密码 -(void) getRequest { //第一步,创建URL NSURL *url = [NSURLURLWithString:@"http://192.168.99.17:8888/loginDome/foregroundAction...
分类:移动开发   时间:2014-11-27 12:50:49    阅读次数:228
swift 添加webview
swift显示HTML代码 在布局中的方法1、根据URL 直接显示内容,var urls : NSURL = NSURL(string: "http://www.baidu.com")!var urlrequest = NSURLRequest(URL: urls)var aboutUsDetail...
分类:编程语言   时间:2014-11-25 15:59:43    阅读次数:277
关于AFNetWorking 下载进度 显示"The operation couldn’t be completed. Is a directory" 的bug处理
NSURL *URL = [NSURL URLWithString:@"http://cdn.sencha.com/ext/gpl/ext-4.2.1-gpl.zip"]; NSURLRequest *request = [NSURLRequest requestWithURL:URL]; //下载请求 AFHTTPRequestOperation *operat...
分类:Web程序   时间:2014-11-25 00:22:52    阅读次数:164
ios 网络请求
-(void)touchesBeGan:(NSSet *)touches withEvent:(UIEvent *)event{ //1.url NSURL *url = [NSURL URLWithString:@"http://m.baidu.com"]' //2.request NSU...
分类:移动开发   时间:2014-11-24 15:11:21    阅读次数:146
iOS 上传文件
NSString *boundry = @"boundry";//分节符 NSMutableURLRequest *mutableRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"服务器地址"]]; [m...
分类:移动开发   时间:2014-11-22 17:22:28    阅读次数:165
646条   上一页 1 ... 54 55 56 57 58 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!