一、要实现的功能
1、新特性页面
1.1、是否进入新特性界面的两种情况
1)第一次安装此APP,进入新特性界面
2)不是第一次安装,但是有版本更新,进入新特性界面
1.2、具体的代码实现
1 //0.版本号的key 2 NSString * key = @"CFBundleVersion"; 3 4 //1.取出沙盒中存储的上次使用软件的版本号 5 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; 6 NSString *lastVersion = [defaults stringForKey:key]; 7 8 //2. 获得当前软件的版本号 9 NSString *currentVersion = [NSBundle mainBundle].infoDictionary[key]; 10 //3.判读版本号 11 if ([currentVersion isEqualToString:lastVersion]) {//如果当前版本和沙盒中的版本一样,则不进入新特性界面 12 self.window.rootViewController = [[FZHTabViewController alloc]init]; 13 } else { // 如果不一样,则进入新特性界面 14 self.window.rootViewController = fzhNFVC; 15 // 更新当前版本到沙盒一遍下次使用 16 [defaults setObject:currentVersion forKey:key]; 17 [defaults synchronize]; 18 }
2、登录注册页面
2.1、登录界面的手机号判断
1)现在的APP大部分都会使用到手机号注册这一功能,有了这个功能就会有判断手机号有效性这一需求,如果我们不判断手机号的有效性的话既会降低用户体验又会丧失掉有用的用户信息。
2)实现思路:创建一个字符串的分类来判断。
2.1.1、具体代码实现
1 + (BOOL)validatePhone:(NSString *)phone 2 { 3 /** 4 * 手机号码 5 * 移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188 6 * 联通:130,131,132,152,155,156,185,186 7 * 电信:133,1349,153,180,189 8 */ 9 NSString * MOBILE = @"^1(3[0-9]|5[0-35-9]|8[025-9])\\d{8}$"; 10 /** 11 10 * 中国移动:China Mobile 12 11 * 134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188 13 12 */ 14 NSString * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\\d)\\d{7}$"; 15 /** 16 15 * 中国联通:China Unicom 17 16 * 130,131,132,152,155,156,185,186 18 17 */ 19 NSString * CU = @"^1(3[0-2]|5[256]|8[56])\\d{8}$"; 20 /** 21 20 * 中国电信:China Telecom 22 21 * 133,1349,153,180,189 23 22 */ 24 NSString * CT = @"^1((33|53|8[09])[0-9]|349)\\d{7}$"; 25 /** 26 25 * 大陆地区固话及小灵通 27 26 * 区号:010,020,021,022,023,024,025,027,028,029 28 27 * 号码:七位或八位 29 28 */ 30 // NSString * PHS = @"^0(10|2[0-5789]|\\d{3})\\d{7,8}$"; 31 32 NSPredicate *regextestmobile = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", MOBILE]; 33 NSPredicate *regextestcm = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CM]; 34 NSPredicate *regextestcu = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CU]; 35 NSPredicate *regextestct = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CT]; 36 37 if (([regextestmobile evaluateWithObject:phone] == YES) 38 || ([regextestcm evaluateWithObject:phone] == YES) 39 || ([regextestct evaluateWithObject:phone] == YES) 40 || ([regextestcu evaluateWithObject:phone] == YES)) 41 { 42 return YES; 43 } 44 else 45 { 46 return NO; 47 }
2.2、密码字符位数的限制
1)实现思路:如果大于6位,则在textfiled的代理方法里面截取字符串的前六位赋值给该textfiled,如果小于六位提示密码位数不符。
2.2.1、具体代码实现
1)大于6位
1 #pragma mark - #pragma mark- UITextFieldDelegate 2 - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string 3 { 4 range.location = 0; 5 range.length = 5; 6 7 if (textField.text.length > 5) { 8 NSString * subString = [self.password.text substringWithRange:range]; 9 self.password.text = subString; 10 } 11 return YES; 12 }
2)小于6位则弹出提示框
1 [MBProgressHUD showError:@"手机号码不正确或密码位数不对"];
2.3、设置键盘类型
1)因为是手机号注册,所以当用户点击textfiled的时候键盘弹出的格式应该是数字键盘,这样就省去了用户改变键盘类型的操作,提高了用户体验。
2.3.1实现代码
1 self.account.keyboardType = UIKeyboardTypeNumberPad;
2.4、本地用户信息的存储
1)数据持久化存储一共有四种方法:归档、plist、SQLite、CoreData。
2)我采用的是归档的方法归档,因为可以存储自己定义的数据类型而且比较简单。
2.4.1、实现思路
1)创建自己的用户模型
2)将数据以模型的方式存储在沙盒中
2.4.2、具体的代码实现
1)数据模型的.h文件
1 //账号密码 2 @property (nonatomic,strong)NSString * user_account; 3 @property (nonatomic,strong)NSString * user_password; 4 5 +(instancetype)accountWithDict:(NSDictionary *)dict; 6 -(instancetype)initWithDict:(NSDictionary *)dict;
2)数据模型的.m文件
1 +(instancetype)accountWithDict:(NSDictionary *)dict 2 { 3 return [[self alloc]initWithDict:dict]; 4 } 5 -(instancetype)initWithDict:(NSDictionary *)dict 6 { 7 if (self = [super init]) { 8 [self setValuesForKeysWithDictionary:dict]; 9 } 10 return self; 11 } 12 /** 13 * 从文件中解析对象的时候调 14 */ 15 - (id)initWithCoder:(NSCoder *)decoder 16 { 17 if (self = [super init]) { 18 self.user_account = [decoder decodeObjectForKey:@"user_account"]; 19 self.user_password = [decoder decodeObjectForKey:@"user_password"]; 20 } 21 return self; 22 } 23 24 /** 25 * 将对象写入文件的时候调用 26 */ 27 - (void)encodeWithCoder:(NSCoder *)encoder 28 { 29 [encoder encodeObject:self.user_account forKey:@"user_account"]; 30 [encoder encodeObject:self.user_password forKey:@"user_password"]; 31 }
3)存储模型的代码
1 //1.存储用户信息 2 NSString * filepath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"account.data"]; 3 NSMutableDictionary * dict = [NSMutableDictionary dictionary]; 4 5 dict[@"user_account"] = self.account.text; 6 dict[@"user_password"] = self.password.text; 7 FZHAccountModel * account = [[FZHAccountModel alloc]initWithDict:dict]; 8 [NSKeyedArchiver archiveRootObject:account toFile:filepath];
4)调取模型数据的代码
1 NSString * filepath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"account.data"]; 2 FZHAccountModel *account = [NSKeyedUnarchiver unarchiveObjectWithFile:filepath];
2.5、界面间反向传值
2.5.1、需求分析
当用户在注册界面或者登陆界面输入完信息之后当跳转到上一页面时,应该讲用户账号传递过来,不用用户再次输入账号,以此来提高用户体验。
2.5.2、实现思路
1)代理-协议,自己写一个协议来传递信息
2)block传值
2.5.3、具体代码实现(block),详细讲解:http://www.cnblogs.com/fengzhihao/p/5200527.html
1)定义block
@property (nonatomic,copy)void (^phoneBlock)(NSString * phoneNumber);
2)实现block
//block反向传值 if (self.phoneBlock) { self.phoneBlock(self.account.text); }
3)调用block
FZHLoginViewController * loginVC = [[FZHLoginViewController alloc]init]; loginVC.phoneBlock = ^ (NSString * phoneNumber){ NSLog(@"%@",phoneNumber); [self.toLoginBtn setTitle:phoneNumber forState:UIControlStateNormal]; };
二、总结
1、键盘类型具体样式
UIKeyboardTypeDefault:
UIKeyboardTypeASCIICapable:
UIKeyboardTypeNumbersAndPunctuation:
UIKeyboardTypeURL:
UIKeyboardTypeNumberPad:
UIKeyboardTypePhonePad:
UIKeyboardTypeNamePhonePad:
UIKeyboardTypeEmailAddress:
UIKeyboardTypeDecimalPad:
UIKeyboardTypeTwitter:
UIKeyboardTypeWebSearch:
UIKeyboardTypeAlphabet:
三、参考博客
1、键盘类型:http://blog.csdn.net/crazyzhang1990/article/details/39965931
四、demo下载地址
https://github.com/fengzhihao123/FZHDota2