说明 .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
class IndexViewController: UIViewController{} let className = "IndexViewController" let bundlePath = NSBundle.mainBundle().bundlePath let bundleFullNa
分类:
编程语言 时间:
2016-03-11 15:22:01
阅读次数:
148
NSString *path = [[NSBundle mainBundle] pathForResource:@"ad_type = 4" ofType:@"html"]; NSString *htmlStr = [NSString stringWithContentsOfFile:path en
分类:
Web程序 时间:
2016-03-04 18:58:48
阅读次数:
219
错误提示: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter' 解决方法:
分类:
其他好文 时间:
2016-03-02 21:46:24
阅读次数:
119
在项目中,经常需要读取配置文件,现在就来看看读取plist配置文件的代码 NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle pathForResource:@"fileName" ofType:@"plis
分类:
移动开发 时间:
2016-03-01 00:52:44
阅读次数:
214
在使用类之前要先获得 命名空间 通过json来获取 字符型的类名 然后创建类对象,这时候就要用到字符转类 // 从info字典中获取到 命名空间 转为字符型 let NS = NSBundle.mainBundle().infoDictionary!["CFBundleExecutable"] as
分类:
编程语言 时间:
2016-02-29 21:30:17
阅读次数:
208
NSBundle* bundle = [NSBundle mainBundle]; NSString* path = [bundle bundlePath]; NSURL * fileURL=[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@
分类:
其他好文 时间:
2016-02-25 00:11:05
阅读次数:
250
以上为字典数据(图片) 首先求到应用程序包的路径 NSBundle *bundle = [NSBundle mainBundle]; NSString *path = [bundle bundlePath]; 然后将路径下所有的文件读出 NSFileManager *fm = [NSFileMana
分类:
移动开发 时间:
2016-02-22 16:02:22
阅读次数:
150
这个pilist文件最外面的是一个数组,数组中每一个item是一个字典,我们的目的就是为了取到每一个item字典中的内容数据 下面看代码举例 //加载数组 - (void)handleData { //获取文件路径 NSString *filePath = [[NSBundle mainBundle
分类:
其他好文 时间:
2016-02-22 15:44:36
阅读次数:
131
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