IOS
文章平均质量分 81
Elena_Lee
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
涂鸦 画线
视图的拖拽 (.h文件) // // KView.h // UI_3 // // Created by 0101 on 13-7-29. // Copyright (c) 2013年 PH. All rights reserved. // #import @interface KV原创 2013-07-29 19:48:33 · 1243 阅读 · 1 评论 -
网络请求数据解析
同步Get请求 //同步get -(IBAction)syncGet:(id)sender { //url 请求的url NSURL *url = [NSURL URLWithString:@"http://api.hudong.com/iphonexml.do?type=focus-c"]; // 方式二 //创建请求数据原创 2013-09-29 11:53:47 · 797 阅读 · 0 评论 -
2013-08-05
UINavigationController = UIViewController + UINavigationBar 属性传值模型总结 将A页面所拥有的信息通过属性传递到B页面使用 代理传值 A页面push到B页面,如果页面的信息想回传(回调)到A页面,用用代理传值,其中B定义协议和声明代理,A确认并实现代理,A作为B的代理转载 2013-08-05 17:29:04 · 552 阅读 · 0 评论 -
广告弹窗
// // Advertisement.m // UI_2_HomeWork // // Created by 0101 on 13-7-28. // Copyright (c) 2013年 PH. All rights reserved. // //加载广告条(app启动3秒后弹出广告条,并且用户可以手动关闭广告条)转载 2013-07-28 13:55:42 · 684 阅读 · 0 评论 -
霓虹灯
AppDelegate.m文件 // // AppDelegate.m // UI_2_HomeWork // // Created by 0101 on 13-7-28. // Copyright (c) 2013年 PH. All rights reserved. // #import "AppDelegate转载 2013-07-28 12:19:47 · 588 阅读 · 0 评论 -
关灯
// // CloseLightController.m // UI_2_HomeWork // // Created by 0101 on 13-7-26. // Copyright (c) 2013年 PH. All rights reserved. // #import "CloseLamp.h" #define KFram转载 2013-07-28 15:43:41 · 696 阅读 · 0 评论 -
2013-07-24 Chapter2 UIApplication、UIWindow、 UIViewController、 UIView
UIApplication的原理 UIApplicationDelegate中的代理方法 UIWindow的用法 UIViewController的用法 UIView的用法 一个应用程序一般只有一个windows UIApplication生命周期 1、支持后台 2、不支持后台 Application does not run on background设置成YES原创 2013-07-24 13:40:59 · 1037 阅读 · 0 评论 -
2013-07-31 UISegment UISlider UIImageView
UISegment分段控件 //分段控件UISegment NSArray *titles = [[NSArray alloc]initWithObjects:@"最热",@"最新",@"动态", nil]; UISegmentedControl *segment = [[UISegmentedControl alloc]initWithItems:转载 2013-07-31 17:00:28 · 920 阅读 · 0 评论 -
2013-07-22 IOS-User Interface
ios常用控件 熟悉事件处理机制 iOS动画效果 掌握不同ViewController的使用场景,使用方法 iOS的各种设计模式 iOS硬件特性,会硬件编程 网络应用开发,数据持久化,多线程开发 UI加法运算 UITextFiled,常用于显示少量信息的空间 text textcolor // // AppDelegate.h原创 2013-07-24 13:44:57 · 648 阅读 · 0 评论 -
2013-07-23 UI Controler
iOS开发之label 文字凹陷效果 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 100)]; label.text = @"文字凹陷效果"; label.shadowColor = [UIColor colorWithRed转载 2013-07-24 13:43:45 · 581 阅读 · 0 评论 -
iOS 各种传值方式
属性传值 将A页面所拥有的信息通过属性传递到B页面使用 B页面定义了一个naviTitle属性,在A页面中直接通过属性赋值将A页面中的值传到B页面。 A页面.h文件 #import #import "DetailViewController.h" @interface RootViewController : UIViewControllerChangeDeleg转载 2013-08-06 15:20:41 · 2171 阅读 · 0 评论
分享