摘要:
//XMLTableViewController.h文件 #import <UIKit/UIKit.h> #import "SecondTableViewController.h" @interface XMLTableViewController : UITableViewController<N 阅读全文
摘要:
文件ViewController.m中【使用TouchJSon解析方法:(需导入包:#import "TouchJson/JSON/CJSONDeserializer.h"),并且在非ARC环境下】 //获取网络接口 NSURL *url=[NSURL URLWithString:@"http:// 阅读全文
摘要:
按键 描述 command+[ 左移代码块 command+] 右移代码块 Tab键 接受代码自动完成提示 Esc键 显示代码提示菜单 command+方向left键 移动光标到本行行首 command+方向right键 移动光标到本行行尾 control+k 删除本行光标后的所有字符 comman 阅读全文
摘要:
数据库,sqlite的增删改查简单运用举例 阅读全文
摘要:
数据持久化的属性列表代码举例 阅读全文
摘要:
UITableView的增删改插 阅读全文
摘要:
AppDelegate.h文件 #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @ 阅读全文
摘要:
// ViewController.h文件 #import <UIKit/UIKit.h> @interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>//遵循协议 @property 阅读全文
摘要:
UIslider滑块控件在IOS开发中会常用到,可用于调节音量,字体大小等UI方面的交互,用法总结如下: 初始化一个滑块: 设置滑块最小边界值(默认为0) 设置滑块最大边界值(默认为1) 设置滑块最左端显示的图片: @property(nonatomic,retain) UIImage *minim 阅读全文
摘要:
ViewController的 .h文件 #import <UIKit/UIKit.h> @interface ViewController : UIViewController @property (strong,nonatomic) UIImageView *myImageView0; @p 阅读全文