码迷,mamicode.com
首页 >  
搜索关键字:nsurl    ( 646个结果
iOS HTML5的JS交互
//webView与H5点击交互走的代理-(BOOL)webView:(UIWebView*)webViewshouldStartLoadWithRequest:(NSURLRequest*)requestnavigationType:(UIWebViewNavigationType)navigationType{NSURL*url=[requestURL];NSString*urlStr=url.absoluteString;NSString*protocolPrefix=@"scheme..
分类:移动开发   时间:2016-08-26 15:49:21    阅读次数:414
iOS开发基础知识--碎片44
iOS开发基础知识--碎片44 iOS开发基础知识--碎片44 1:App跳转至系统Settings 跳转在IOS8以上跟以下是有区别的,如果是IOS8以上可以如下设置: NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLSt ...
分类:移动开发   时间:2016-08-26 15:08:38    阅读次数:240
IOS上传多张图片(ASIHTTPRequest)
/* 上传图片 */ //#define API_BASE_URL(_URL_) [NSURL URLWithString:[@"http://172.20.0.248:8080/BaiXin/mapi/" stringByAppendingString:_URL_]] ASIFormDataReq ...
分类:移动开发   时间:2016-08-24 13:05:24    阅读次数:390
iOS-WKWebView携带cookie发送http请求,cookie失效
发送请求代码: NSString *testUrl = @"http://10.22.122.7:8081/test2_action/view_index"; NSURL *url = [NSURL URLWithString:testUrl]; NSMutableURLRequest *reque ...
分类:移动开发   时间:2016-08-24 12:52:15    阅读次数:918
iOS 跳转到App Store下载或评论
//跳转到app在AppStore页面 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@ ...
分类:移动开发   时间:2016-08-23 13:12:44    阅读次数:217
加载数据 设置图片圆角方法
[_iconView sd_setImageWithURL:[NSURL URLWithString:item.image_list] placeholderImage:[UIImage imageNamed:@"defaultUserIcon"] options:SDWebImageCacheMe ...
分类:其他好文   时间:2016-08-19 20:51:06    阅读次数:167
加载GIF动画方法 iOS
方法一 使用UIWebView _codeStr为gif网址 如果是本地的gif可以直接使用dataWithContentsOfFile方法 NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:_codeStr]]; U ...
分类:移动开发   时间:2016-08-16 13:13:25    阅读次数:255
获取天气情况
NSError *error; //获取温度 //加载一个NSURL对象 NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://api.thinkpage.cn/v3/weather/d ...
分类:其他好文   时间:2016-08-15 16:01:51    阅读次数:143
网络基础
网络基础 网络基础(概念性和逻辑性的东西较多)(****4星) 一、URL(难度****4星) 【概念】NSURL URL:Uniform Resource Locator 统一资源定位符 是资源在网络上的地址,位置,每个资源都有一个唯一的URL 【例子】 百度 http://www.baidu.c ...
分类:其他好文   时间:2016-08-13 22:28:45    阅读次数:237
iOS开发拓展篇—封装音频文件播放工具类
一、简单说明 1.关于音乐播放的简单说明 (1)音乐播放用到一个叫做AVAudioPlayer的类 (2)AVAudioPlayer常用方法 加载音乐文件 - (id)initWithContentsOfURL:(NSURL *)url error:(NSError **)outError; - ( ...
分类:移动开发   时间:2016-08-13 19:42:38    阅读次数:234
646条   上一页 1 ... 10 11 12 13 14 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!