音乐播放 NSString *path = [[NSBundle mainBundle] pathForResource:@"预谋" ofType:@"mp3"]; if (path) { NSURL *url = [NSURL fileURLWithPath:path]; player= [[AV ...
分类:
移动开发 时间:
2017-04-29 12:53:25
阅读次数:
230
网络解析同步异步 /* 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插件怎么调用到原生代码:cordova调用过程,只是写得太水。基本没有提到原理。近期加深了一点理解,又一次补充说明一下 js调用native 以下是我们产品中的代码片段: datePicker.show(options, function (date) { ...
分类:
移动开发 时间:
2017-04-26 14:43:05
阅读次数:
263
(1).CoreDataa>什么是CoreDatab>CoreData增删改查"什么时候使用COredata 什么时候使用FMDatabases"CoreData 在公司使用的比较少,用户的比较多的是FMDatabases数据存储的结构比较简单的时候,使用CoreData开发效率会高点,为什么?面向 ...
分类:
移动开发 时间:
2017-04-25 11:35:59
阅读次数:
291
一、在使用Xcode6进行执行项目时。发现程序直接Crash了,控制台信息例如以下: dyld: Symbol not found: _NSURLAuthenticationMethodServerTrust Referenced from: /var/mobile/Applications/B60 ...
分类:
Web程序 时间:
2017-04-15 12:37:41
阅读次数:
316
一、大文件下载 1.方案:利用NSURLConnection和它的代理方法1> 发送一个请求// 1.URLNSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/videos.zip"];// 2.请 ...
分类:
移动开发 时间:
2017-04-11 01:31:03
阅读次数:
260
1.精简代码, 返回最后一句的值,这个方法有一个优点,所有的变量都在代码块中,也就是只在代码块的区域中有效,这意味着可以减少对其他作用域的命名污染。但缺点是可读性比较差 NSURL *url = ({ NSString *urlString = [NSString stringWithFormat: ...
分类:
移动开发 时间:
2017-04-03 17:18:37
阅读次数:
289
一、 今日做项目遇到图片复用问题,返回cell高度相同,由于网络不好出现图片复用,发现问题Cell 图片加载方法如下:- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder { [selfsd_s... ...
分类:
其他好文 时间:
2017-03-10 12:49:44
阅读次数:
366
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
NSURL *url = [NSURL URLWithString:@"Prefs:root=WIFI"]; Class LSApplicationWorkspace = NSClassFromString(@"LSApplicationWorkspace"); [[LSApplicationWor ...
分类:
移动开发 时间:
2017-02-09 11:20:50
阅读次数:
498