// 加载本地xib #define kMainBundleLoadXib(xibName) [[[NSBundle mainBundle] loadNibNamed:xibName owner:nil options:nil] lastObject] 单利定义 ...
分类:
移动开发 时间:
2017-09-01 11:20:50
阅读次数:
266
@property (nonatomic,strong) NSArray *imageData;//定义一个数组 //懒加载数据 -(NSArray *)imageDate { if(_imageDate==nil) { NSBundle *bundle=[NSBundle mainBundle];... ...
分类:
移动开发 时间:
2017-08-18 19:51:03
阅读次数:
265
sqlite3 命令行简单使用 sqlite3 路径 //打开数据库路径连接 select * from sqlite_master where type=”table”; //显示全部表结构 select * from testable; //显示某张表数据 .tables //查看表 .help ...
分类:
移动开发 时间:
2017-08-02 20:59:52
阅读次数:
217
http://blog.csdn.net/jinnchang/article/details/44828189 1、沙盒机制介绍 iOS 中的沙盒机制(SandBox)是一种安全体系。每个 iOS 应用程序都有一个单独的文件系统(存储空间),而且只能在对应的文件系统中进行操作,此区域被称为沙盒。所有 ...
分类:
移动开发 时间:
2017-07-18 13:20:37
阅读次数:
216
/*这时用到 pop框架 自定义按钮 BSVerticalButton*/ // 加载了一个 用xib描述的这个UIView + (instancetype)publishView{ return [[NSBundle mainBundle]loadNibNamed:NSStringFromClas ...
分类:
其他好文 时间:
2017-07-14 18:05:15
阅读次数:
328
有很多人在设置plist文件的时候, 会发现读取不了plist文件里面的内容, 返回值为nil, 下面我们来解决一下这个问题. 首先我们打开工程并且按照下面的步骤来设置: 设置好后, 我们来写一段代码测试一下看看是否添加好: NSBundle *bundle = [NSBundle mainBund ...
分类:
其他好文 时间:
2017-06-29 00:50:33
阅读次数:
153
NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; NSString *appVersion = [infoDic objectForKey:@"CFBundleShortVersionString"]; NSDiction ...
分类:
其他好文 时间:
2017-06-23 11:41:35
阅读次数:
117
// // ViewController.m // CX 音效 // // Created by ma c on 16/4/15. // Copyright © 2016年 bjsxt. All rights reserved. // #import "ViewController.h" #impo... ...
分类:
移动开发 时间:
2017-06-18 22:46:55
阅读次数:
235
*owner在开发中现在已经很少用了 有兴趣的童鞋可以看看* 我们遇到owner通常是在类似 [[[NSBundle mainBundle] loadNibNamed:@"Food" owner:nil options:nil]lastObject ]中遇到的。 我们一般的做法是直接把owner设置 ...
分类:
移动开发 时间:
2017-06-18 22:40:03
阅读次数:
198
ios在后台 完成一个长期任务 我们知道,到我们程序从前台退到后台(安home)键后,将执行程序的委托方法。 // 当应用程序掉到后台时,执行该方法 - (void)applicationDidEnterBackground:(UIApplication *)application { } 我们已经 ...
分类:
移动开发 时间:
2017-06-07 00:49:26
阅读次数:
208