摘要:
UINavigationController#import "AppDelegate.h"#import "ViewController.h"@interfaceAppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIA... 阅读全文
摘要:
委托的作用有两个,一个是传值,一个是传事件。 委托用到的最多的用途 回传值(回调) 当我们声明了遵循的协议的属性时,属性的关键字要用weak或者assign,目的是为了避免循环引用 委托模式,它的特点是,一对一 用途是用在有上下级关系的两个view,不能跨级调用 例如:Read... 阅读全文
摘要:
通讯录可实现增删改//把导航控制器设置为给视图#import "AppDelegate.h"#import "ViewController.h"@interfaceAppDelegate ()@end@implementation AppDelegate- (BOOL)application:(U... 阅读全文
摘要:
#import "AppDelegate.h"#import "ViewController.h"@interfaceAppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)applicati... 阅读全文
摘要:
重用机制:当我们使用tableView时,系统只会创建屏幕中显示的cell个数+1,当cell滑出可视范围时,会将此Cell放入重用池,当有新的cell滑进可视范围时,会先到重用池找有没有可以使用的cell(根据标识),如果能找到,则拿出来直接用,否则再创建新的cell#import "ViewCo... 阅读全文
摘要:
contentSize //定义内容区域大小,决定是否能够滚动contentOffset //屏幕左上角距离坐标原点的偏移量scrollsToTop //滑动到顶部(点状态的时候)pagingEnabled //是否整屏翻动bounces //边界是否回弹//1.创建一个scro... 阅读全文
摘要:
简介 沙盒文件中存储有原始用户信息,老用户可以直接登录。新用户需要进行注册,注册之后信息会永久保存。#import "AppDelegate.h"#import "LoginViewController.h"@interfaceAppDelegate ()@end@implementation A... 阅读全文
摘要:
基础小控件 /***************************************UIlabel*************************************/ UILabel *label = [[UILabel alloc]init];//创建UIlabel对象 lab... 阅读全文
摘要:
沙盒机制 数据持久化:内存数据到实体文件的过渡。 每个应用都有属于自己的存储空间,即沙盒。 一个app只能访问自己的沙盒,不可访问其他区域 。 如果应用需要进行文件操作,则必须将文件存放在沙盒中。 Documents:将程序中建立的或在程序中浏览到的文件数据保存在该目录下,iTunes备份和恢复的时... 阅读全文
摘要:
简要说明: 该计算器可以实现多位数的加减乘除,还可以连加减。不能实现算术的优先级,若有好的想法,可以告知一二。#import "AppDelegate.h"#import "ViewController.h"@interfaceAppDelegate ()@end@implementation A... 阅读全文