ios中DEBUG中记住用户名和密码

- (void)viewDidLoad
{
    [super viewDidLoad];
    
#ifdef DEBUG
    // 设置测试使用的用户名和密码
    self.nameText.text = @“xiaoshuai";
    self.pwdText.text = @"123";
    [self textChanged];
#endif
}

 

posted on 2014-06-16 20:22  林源  阅读(196)  评论(0编辑  收藏  举报

导航