码迷,mamicode.com
首页 >  
搜索关键字:nsurl    ( 646个结果
iOS 调用音乐播放以及视频播放器
音乐播放 NSString *path = [[NSBundle mainBundle] pathForResource:@"预谋" ofType:@"mp3"]; if (path) { NSURL *url = [NSURL fileURLWithPath:path]; player= [[AV ...
分类:移动开发   时间:2017-04-29 12:53:25    阅读次数:230
IOS 网络解析
网络解析同步异步 /* get同步 */ - (IBAction)GET_TB:(id)sender { //1.创建url NSURL *url = [NSURL URLWithString:@"http://project.lanou3g.com/teacher/yihuiyun/lanoupr ...
分类:移动开发   时间:2017-04-29 10:56:32    阅读次数:252
cordova与ios native code交互的原理
非常早曾经写了一篇博客,总结cordova插件怎么调用到原生代码:cordova调用过程,只是写得太水。基本没有提到原理。近期加深了一点理解,又一次补充说明一下 js调用native 以下是我们产品中的代码片段: datePicker.show(options, function (date) { ...
分类:移动开发   时间:2017-04-26 14:43:05    阅读次数:263
IOS CoreData的(增删查改)
(1).CoreDataa>什么是CoreDatab>CoreData增删改查"什么时候使用COredata 什么时候使用FMDatabases"CoreData 在公司使用的比较少,用户的比较多的是FMDatabases数据存储的结构比较简单的时候,使用CoreData开发效率会高点,为什么?面向 ...
分类:移动开发   时间:2017-04-25 11:35:59    阅读次数:291
Xcode6:解决_NSURLAuthenticationMethodServerTrust异常问题
一、在使用Xcode6进行执行项目时。发现程序直接Crash了,控制台信息例如以下: dyld: Symbol not found: _NSURLAuthenticationMethodServerTrust Referenced from: /var/mobile/Applications/B60 ...
分类:Web程序   时间:2017-04-15 12:37:41    阅读次数:316
IOS NSURLConnection(大文件下载)
一、大文件下载 1.方案:利用NSURLConnection和它的代理方法1> 发送一个请求// 1.URLNSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/videos.zip"];// 2.请 ...
分类:移动开发   时间:2017-04-11 01:31:03    阅读次数:260
iOS中书写代码规范35条小建议
1.精简代码, 返回最后一句的值,这个方法有一个优点,所有的变量都在代码块中,也就是只在代码块的区域中有效,这意味着可以减少对其他作用域的命名污染。但缺点是可读性比较差 NSURL *url = ({ NSString *urlString = [NSString stringWithFormat: ...
分类:移动开发   时间:2017-04-03 17:18:37    阅读次数:289
只言片语 - cell 图片复用问题
一、 今日做项目遇到图片复用问题,返回cell高度相同,由于网络不好出现图片复用,发现问题Cell 图片加载方法如下:- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder { [selfsd_s... ...
分类:其他好文   时间:2017-03-10 12:49:44    阅读次数:366
nil Nil NULL NSNull 之间的区别
nil -> Null-pointer to objective- c objectNIL -> Null-pointer to objective- c class 表示对类进行赋空值NULL: A null pointer to anything else, is for C-style mem ...
分类:其他好文   时间:2017-02-17 18:56:01    阅读次数:185
iOS10 下APP内跳转到系统设置WIFI界面
NSURL *url = [NSURL URLWithString:@"Prefs:root=WIFI"]; Class LSApplicationWorkspace = NSClassFromString(@"LSApplicationWorkspace"); [[LSApplicationWor ...
分类:移动开发   时间:2017-02-09 11:20:50    阅读次数:498
646条   上一页 1 ... 6 7 8 9 10 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!