• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

objective-c实现用户验证,登陆XcodeiOS

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
- (void)viewDidLoad
{
    [super viewDidLoad];
 //加载窗口的时候把从文件里读出用户名。
 NSString *filePath = [self documentsPath:@"user.txt"]; 
    //读出文件存到数组username中
    NSArray *username = [NSArray arrayWithContentsOfFile:filePath];
    self.TXF1.text   = [username objectAtIndex:0];
    self.Txtpwd.text = [username objectAtIndex:1];
    //文本显示设为安全。星号
    self.Txtpwd.secureTextEntry = YES;
}
//登陆验证 - (IBAction)loginpage:(id)sender { NSLog(@"login...\n"); NSString *filePath = [self documentsPath:@"user.txt"]; //从user这个文件里读出用户名和密码是否与输入的相同 NSArray *username = [NSArray arrayWithContentsOfFile:filePath]; if([TXF1.text isEqualToString:[username objectAtIndex:0]] && [Txtpwd.text isEqualToString:[username objectAtIndex:1]]) { //如果验证正确,则重新打开一个窗口 if(self.loginhome ==nil) { NSLog(@"loginhome"); loginhome *homepage = [[loginhome alloc]initWithNibName:@"loginhome" bundle:nil]; self.loginhome = [homepage autorelease]; [self.view addSubview:self.loginhome.view]; } else { [self.view addSubview:self.loginhome.view]; } NSLog(@"登陆成功!\n"); } else { NSLog(@"用户名或密码错误!\n"); judgelogin = [[UIAlertView alloc]initWithTitle:@"提示" message:@"用户名或密码错误!" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定",nil]; [judgelogin show]; [judgelogin release]; } } //读程序目录而准备 -(NSString *)bundlePath:(NSString *)fileName { return [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:fileName]; } -(NSString *)documentsPath:(NSString *)fileName { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; return [documentsDirectory stringByAppendingPathComponent:fileName]; } -(NSString *)documentsPath { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; return documentsDirectory; }




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Objective-c官方文档封装数据属性发布时间:2022-07-12
下一篇:
Objective-C:字符串的反转Reverse发布时间:2022-07-12
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap