ios中DEBUG中记住用户名和密码
时间:2014-06-17 13:49:29
收藏:0
阅读:252
- (void)viewDidLoad
{
[super viewDidLoad];
#ifdef DEBUG
// 设置测试使用的用户名和密码
self.nameText.text = @“xiaoshuai";
self.pwdText.text = @"123";
[self textChanged];
#endif
}
评论(0)