码迷,mamicode.com
首页 >  
搜索关键字:nsbundle    ( 385个结果
AppleScript in Cocoa
NSString *path = [[NSBundle mainBundle] pathForResource:@"××××" ofType:@"scpt"];NSAppleScript *script = [[NSAppleScript alloc] initWithContentsOfURL:[...
分类:移动开发   时间:2014-09-05 17:51:51    阅读次数:225
NavigationController修改状态条颜色
#import"AddressBookNavigationController.h"@interfaceAddressBookNavigationController()@end@implementationAddressBookNavigationController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{self=[superinitWithNibName:nibNameOrNilbundle..
分类:其他好文   时间:2014-09-05 03:25:41    阅读次数:198
IOS开发NSBundle对象使用详解
转:http://blog.csdn.net/guozh/article/details/8823674一、NSBundle 简介 bundle是一个目录,其中包含了程序会使用到的资源. 这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in). 对...
分类:移动开发   时间:2014-08-26 11:28:25    阅读次数:209
iOS开发-播放本地音频(可后台播放)
//初始化音乐 //创建音乐文件路径 NSString *musicFilePath = [[NSBundle mainBundle] pathForResource:@"eyeExe" ofType:@"mp3"]; //判断文件是否存在 if ([[NSFileManager defaultManager] fileExistsAtPath:music...
分类:移动开发   时间:2014-08-23 01:08:19    阅读次数:313
UIViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil;默认的初始化方法。虽然可以,但不要在这里初始化view,因为如果在这里初始化view,系统就不会再调用loadvVew和viewDidLo...
分类:其他好文   时间:2014-08-13 00:47:24    阅读次数:270
【UIKit】UITableView.09 自定义cell
UITableView.09 自定义cell :注意:在创建一个故事版的时候,需要将控制器的class修改成对应的class否则效果实现不了【如图】1.这段代码就是用来设置cell所对应的xib,类似于绑定 // 1.想要使用文件包里面的资源就要使用[NSBundle mainBundle] ...
分类:其他好文   时间:2014-08-07 00:31:37    阅读次数:230
IOS 读取本地的Json/plist 文件
一、一般本地可以存储轻量级数据存储 plist 这个主要是操作字典方法如下: NSString * sampleFile= [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"sections_auth=4.pli...
分类:移动开发   时间:2014-08-07 00:21:07    阅读次数:264
iOS 整理笔记 获取手机信息(UIDevice、NSBundle、NSLocale)
/* iOS的APP的应用开发的过程中,有时为了bug跟踪或者获取用反馈的需要自动收集用户设备、系统信息、应用信息等等,这些信息方便开发者诊断问题,当然这些信息是用户的非隐私信息,是通过开发api可以获取到的。那么通过那些api可以获取这些信息呢,iOS的SDK中提供了UIDevice,NSBund...
分类:移动开发   时间:2014-08-06 14:18:01    阅读次数:226
Could not find a storyboard named 'Main' in bundle NSBundle </Users/tianxiao/
1、删掉工程中main.storyboard 后要删除plist文件中对应的键值,否则会报如下错误:Could not find a storyboard named 'Main' in bundle NSBundle2、删除main.storyboard后,需要在AppDelegate.m中初始化...
分类:其他好文   时间:2014-08-05 22:27:20    阅读次数:188
iOS中的NSBundle常用方法
1.获取app的info.plist详细信息版本号:Bundle version NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];应用标识:Bundle iden...
分类:移动开发   时间:2014-07-28 15:29:43    阅读次数:272
385条   上一页 1 ... 34 35 36 37 38 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!