摘要:
#import "ZBAccountInfo.h"@interface ZBAccountInfo()@endstatic ZBAccountInfo *sharedObj = nil;@implementation ZBAccountInfo+(ZBAccountInfo *)sharedInst... 阅读全文
摘要:
#import @class ZBTabBar;@protocol ZBTabBarDelegate -(void)tabBar:(ZBTabBar *)tabBar didSelectButtonFrom:(int)from to:(int)to;@end@interface ZBTabBar :... 阅读全文
摘要:
//添加所有的手势-(void)addGestureRecognizerToView:(UIView*)view{//旋转手势UIRotationGestureRecognizer*rotationGestureRecognizer=[[UIRotationGestureRecognizerallo... 阅读全文
摘要:
一、键盘风格 UIKit框架支持8种风格键盘。typedefenum{UIKeyboardTypeDefault,//默认键盘:支持所有字符UIKeyboardTypeASCIICapable,//支持ASCII的默认键盘UIKeyboardTypeNumbersAndPunctuation,//标... 阅读全文
摘要:
现在的移动设备很多都提供定位服务,使用iOS系统的iPhone、iPodTouch和iPad都可以提供位置服务,iOS设备能提供3种不同途径进行定位:Wifi,蜂窝式移动电话基站,GPS卫星iOS 不像Android系统在定位服务编程时,可以指定采用哪种途径进行定位。iOS的API把底层这些细节屏蔽... 阅读全文