iOS 总结
文章平均质量分 81
nerohoop
这个作者很懒,什么都没留下…
展开
-
访问iPod Library的一些总结
1.访问音乐库的两种方法,如下图(只能访问音频文件,如music,podcast,audiobook等)2.MPMusicPlayerController的使用有两种播放器可以选择,一种是application music player,另外一种是iPod music player。第一种播放器是一种内部播放器,当程序对出后停止播放;而第二种播放器则与iPod播放器内的原创 2012-01-21 13:25:41 · 16154 阅读 · 0 评论 -
Core Animation And Core Graphics
UIKitThe high-level framework that allows developers to create views and UI related components. It also incorporates some of the low-level APIs into an easier-to-use high-level API.Quartz原创 2012-02-28 14:48:42 · 833 阅读 · 0 评论 -
UIView Animation的一些用法
Animations可以动画显示的视图属性1.UIKit和Core Animation都支持动画效果。在UIKit中,动画是通过UIView对象来实现,视图支持许多基本动画2.视图的可动画改变的属性,frame, bounds, center, transform, alpha, backgroundColor, contentStretch3.Core原创 2012-02-09 16:18:49 · 13873 阅读 · 0 评论 -
CALayers基础概念入门
self.view.layer.backgroundColor = [UIColor orangeColor].CGColor;self.view.layer.cornerRadius = 20.0;self.view.layer.frame = CGRectInset(self.view.layer.frame, 20, 20);CALayer *sublayer = [CALaye原创 2012-02-25 20:47:18 · 524 阅读 · 0 评论 -
Views概念总结
Views的主要作用:子视图的排版和管理绘图和动画Drawing and animation处理触摸事件Event handling创建和配置视图1.通常创建一个nib文件来保存某个视图控制器的整个视图层次,nib文件的根视图表示视图控制器的视图2.视图的默认初始化方法为initWithFrame,指定了视图的大小和在父视原创 2012-02-22 23:49:53 · 1444 阅读 · 0 评论 -
Windows概念总结
1. 每个iOS程序都至少需要一个window,window的作用:包含程序的可视化内容.在传递触摸事件给视图和其他对象中起到重要的作用与视图控制器协作来响应orientation改变.2.window没有任何可视化内容,它只是给视图提供一个容器。3.大多数程序只创建一个window,该window对象是从主nib文件中创建创原创 2012-02-21 17:29:05 · 722 阅读 · 1 评论 -
Core Data Tutorial: Getting Started
http://www.raywenderlich.com/934/core-data-tutorial-getting-startedOf all of the ways to persist data on the iPhone, Core Data is the best one to use for non-trivial data storage. It can red转载 2012-02-10 15:03:07 · 626 阅读 · 0 评论 -
iOS地图的注释(Annotation)
1. 添加到map view的子视图不会随地图的移动而移动,map view会固定其子视图的位置。如果要添加随着地图移动的子视图,可以使用annotations和overlays。annotation用来显示由一个经纬度定义的位置,而overlay则是由多个点所定义或者包含了许多连续的图形。2.在地图上显示annotation,需要提供两个对象annotatio原创 2012-02-05 13:09:51 · 1841 阅读 · 0 评论 -
iPhone获取当前位置(CoreLocation的一些简单使用)
获取用户位置Core Location框架提供了三种用于追踪设备当前位置的服务,Core Location框架从内置的蜂窝,Wi-Fi或者GPS来获取位置The significant-change location service 提供了低耗电的方法来获取当前位置,当前位置改变时会发出通知The standard location service原创 2012-01-28 20:58:01 · 589 阅读 · 0 评论 -
iPhoned地图的一些用法(MapKit的使用)
1.三维球面和二维地图的转换关系2.MapKit支持三种坐标系统第一种是地图坐标,即经度纬度,用结构CLLocationCoordiante2D表示第二种是用于地图计算相关的坐标系 MKMapSize第三种是与UIView相关的坐标系CGSize CGRect3.坐标系之间的转换4.添加Map View到UI CGRect mapFrame原创 2012-01-31 23:53:09 · 365 阅读 · 0 评论 -
人机交互指南-2.app设计策略(官方文档)
sss翻译 2012-01-31 22:31:45 · 346 阅读 · 0 评论 -
Date Formatting Programming Guide 小结
Date FormattersThere are two basic methods you use to create a string representation of a date and to parse a string to get a date object using a date formatter—dateFromString: and stringF原创 2012-01-25 18:55:01 · 133 阅读 · 0 评论 -
objective-C 基本概念和语法总结
Chapter 3 Allocating and Initializing Objects1.NSObject的alloc方法,动态地给对象分配足够的内存来容纳其实例变量,该方法将对象的isa变量初始化为实力对象的类对象,其他变量则设置为02.初始化方法应该返回id对象3.在自定义初始化方法中,应该调用指定初始化方法(designated initializer),指定初始化方原创 2012-02-20 11:38:25 · 396 阅读 · 0 评论