Date and Time Programming Guide 2
坑着先
坑着先
Data Objects //数据封装类
Working With Binary Data //创建和使用样例
Working With Mutable Binary Data //修改NSMutableData
NSCharacterSet, NSMutableCharacterSet
NSString 和 NSScanner 都有通过 NSCharacterSet 来实现其查找排序等功能
这是一个关于C基本数值类型的封装类 NSValue及亲儿子NSNumber, NSDecimalNumber, 和隔壁NSnull的故事
这是iOS Developer Library里面关于数据管理的入门文档.
内容划分如下:
Contents:
Get Up and Running
Become Proficient
Provide Application-Level Preferences
Access Contact Information
UIPageControl
翻页控件
UIPageControl 控件在 iOS 应用程序中出现的比较频繁,尤其在和 UIScrollView 配合来显示大量数据.
创建:
UIPageControl *myPageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0.0,400.0, 320.0, 0.0)];
设置属性:
myPageControl.numberOfPage = 5; //页面数目 myPageControl.currentPage = 3; //当前页数,第四页 myPageControl.hidesForSinglePage = YES; //隐藏指示器 myPageControl.defersCurrentPageDisplay = YES; [myPageControl updateCurrentPageDisplay];