会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
不疯不成魔
博客园
::
首页
::
博问
::
闪存
::
新随笔
::
联系
::
订阅
::
管理
::
公告
2015年9月13日
iOS中的 沙盒文件夹 (数据的写入和读取,归档和反归档)
摘要: AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { /** 沙盒中文件夹: 1.Do...
阅读全文
posted @ 2015-09-13 22:06 不疯不成魔
阅读(3466)
评论(0)
推荐(0)
iOS中读取Cell的两种方式(资源包种加载Cell,从nib文件中注册cell)和xib知识点
摘要: 第一种从资源包中加载cellstatic NSString *identifier = @"resuse"; EditCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; if(!cell){ ...
阅读全文
posted @ 2015-09-13 21:45 不疯不成魔
阅读(442)
评论(0)
推荐(0)
iOS中实现plist中读取数据实现Cell的显示(字典转模型,实现按序分组)修改图片的尺寸
摘要: RootViewController.m#import "RootViewController.h"#import "UIImage+UIImageScale.h"@interface RootViewController ()@property (nonatomic, retain) NSArra...
阅读全文
posted @ 2015-09-13 21:32 不疯不成魔
阅读(542)
评论(0)
推荐(0)
iOS中的视图跳转的三种方式(代码跳转,根据桥跳转,按钮跳转)
摘要: #import "ViewController.h"#import "SecondViewController.h"@interface ViewController ()@property (retain, nonatomic) IBOutlet UITextField *textField;@e...
阅读全文
posted @ 2015-09-13 21:20 不疯不成魔
阅读(425)
评论(0)
推荐(0)
iOS中的数据解析(XML,JSON),SAX解析,DOM解析
摘要: 第三方SAT解析#import "SAXTableViewController.h"#import "Student.h"@interface SAXTableViewController ()@property (nonatomic, retain) NSMutableArray *dataSou...
阅读全文
posted @ 2015-09-13 20:51 不疯不成魔
阅读(343)
评论(0)
推荐(0)
iOS中的请求(GET请求,POST请求,同步请求,异步请求)
摘要: 1.用到的一些第三方PostTableViewController.m#import "PostTableViewController.h"@interface PostTableViewController ()@property(nonatomic,retain) NSArray *dataAr...
阅读全文
posted @ 2015-09-13 20:33 不疯不成魔
阅读(307)
评论(0)
推荐(0)
iOS中的SQLitte
摘要: ContactListController.m#import "ContactListController.h"#import "FMDatabase.h" // 第三方数据库操作类#import "ContactCell.h"#import "DetailViewController.h"#imp...
阅读全文
posted @ 2015-09-13 20:29 不疯不成魔
阅读(274)
评论(1)
推荐(0)