码迷,mamicode.com
首页 >  
搜索关键字:nsbundle    ( 385个结果
加载xib文件
说明 .xib文件在经过编译器编译之后会变成.nib文件 方法1 NSArray *array=[[NSBundle mainBundle]loadNibNamed:@"ShopView" owner:nil options:nil]; [self.view addSubview:[array fi
分类:其他好文   时间:2016-03-15 00:26:53    阅读次数:221
swift 通过 string 创建 object
class IndexViewController: UIViewController{} let className = "IndexViewController" let bundlePath = NSBundle.mainBundle().bundlePath let bundleFullNa
分类:编程语言   时间:2016-03-11 15:22:01    阅读次数:148
解决 Json 中 Html 内容因为反编译带有"\"导致 WebView 无法直接加载问题(字符串的查找与替换)
NSString *path = [[NSBundle mainBundle] pathForResource:@"ad_type = 4" ofType:@"html"]; NSString *htmlStr = [NSString stringWithContentsOfFile:path en
分类:Web程序   时间:2016-03-04 18:58:48    阅读次数:219
NSBundle pathForResource is NULL 取不到值
错误提示: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter' 解决方法:
分类:其他好文   时间:2016-03-02 21:46:24    阅读次数:119
IOS 读取项目中的plist文件
在项目中,经常需要读取配置文件,现在就来看看读取plist配置文件的代码 NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle pathForResource:@"fileName" ofType:@"plis
分类:移动开发   时间:2016-03-01 00:52:44    阅读次数:214
swift 字符转为类,代码创建控件
在使用类之前要先获得 命名空间 通过json来获取 字符型的类名 然后创建类对象,这时候就要用到字符转类 // 从info字典中获取到 命名空间 转为字符型 let NS = NSBundle.mainBundle().infoDictionary!["CFBundleExecutable"] as
分类:编程语言   时间:2016-02-29 21:30:17    阅读次数:208
获取MP3和M4A音乐文件的歌曲信息以及专辑图片--备用
NSBundle* bundle = [NSBundle mainBundle]; NSString* path = [bundle bundlePath]; NSURL * fileURL=[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@
分类:其他好文   时间:2016-02-25 00:11:05    阅读次数:250
iOS学习笔记13-字典数据写入plist
以上为字典数据(图片) 首先求到应用程序包的路径 NSBundle *bundle = [NSBundle mainBundle]; NSString *path = [bundle bundlePath]; 然后将路径下所有的文件读出 NSFileManager *fm = [NSFileMana
分类:移动开发   时间:2016-02-22 16:02:22    阅读次数:150
加载plist文件数据的方法
这个pilist文件最外面的是一个数组,数组中每一个item是一个字典,我们的目的就是为了取到每一个item字典中的内容数据 下面看代码举例 //加载数组 - (void)handleData { //获取文件路径 NSString *filePath = [[NSBundle mainBundle
分类:其他好文   时间:2016-02-22 15:44:36    阅读次数:131
使用Xib添加自定义View
1.新建Cocoa Touch Class以及UI View,2者同名 2.设置UI View的File's Owner——Custom Class为之前新建类 3.设置Xib中View与类关联 4.在实现文件中重写 - (void)awakeFromNib{ [[NSBundle mainBund
分类:其他好文   时间:2016-02-12 16:22:59    阅读次数:336
385条   上一页 1 ... 9 10 11 12 13 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!