2015年10月22日

摘要: #import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate/*回收键盘的步骤1、遵守UITextFieldDelegate协议2、创建UITextField对象3、设置UITextField对象的de... 阅读全文
posted @ 2015-10-22 22:37 陈恩妮66 阅读(326) 评论(0) 推荐(0)
 
摘要: #pragma mark - 创建一个UIButton对象 UIButton *button = [UIButton buttonWithType:(UIButtonTypeSystem)]; button.frame = CGRectMake(100, 100, 100, 100); button... 阅读全文
posted @ 2015-10-22 22:04 陈恩妮66 阅读(125) 评论(0) 推荐(0)
 
摘要: #pragma mark - 创建UITextField对象 //开辟空间并初始化 UITextField *textField = [[UITextField alloc]initWithFrame:CGRectMake(100, 100, 200, 30)]; //设置颜色,使其可见 textF... 阅读全文
posted @ 2015-10-22 20:46 陈恩妮66 阅读(131) 评论(0) 推荐(0)
 
摘要: #pragma mark - 程序启动的时候执行的方法- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { #pragma mark... 阅读全文
posted @ 2015-10-22 17:59 陈恩妮66 阅读(78) 评论(0) 推荐(0)
 
摘要: iOS:移动操作系统 ------------》ios7.0变化大,倾向于扁平化UI:用户界面,即各种页面元素创建工程Xcodeios -->Application —>模板(多个模板)singleview--->设置Devices属性:iPad、iPhone、Universal(通用)工程介绍工程... 阅读全文
posted @ 2015-10-22 17:40 陈恩妮66 阅读(155) 评论(0) 推荐(0)
 
摘要: .h文件中@interface AppDelegate : UIResponder //strong ---- retain(强引用,被它指向的对象引用计数会加一)//weak ----- assgin 作用相似,被它引用的对象引用计数不会改变,只能用于对象类型,当这个对象释放的时候,相应的指针会被... 阅读全文
posted @ 2015-10-22 11:02 陈恩妮66 阅读(63) 评论(0) 推荐(0)
 
摘要: #pragma mark - 应用分类 #pragma mark - 行业基础性服务类应用 //1、新闻资讯 //2、信息搜索服务 //3、邮箱 //4、信息聚合 #pragma mark - 商务应用 //1、人才招聘 //2、交易支付 //3、电子商务 #pragma mark - 交流娱乐 ... 阅读全文
posted @ 2015-10-22 10:55 陈恩妮66 阅读(32) 评论(0) 推荐(0)