5
This commit is contained in:
@@ -149,8 +149,8 @@
|
||||
|
||||
// 这里用 %@ 预留邮箱地址占位
|
||||
NSString *template = KBLocalized(@"We have already sent it to the email address %@. Please enter the 6-digit verification code from the email to verify your mailbox.");
|
||||
// 默认先用一个占位邮箱,外部可以根据真实邮箱重新设置
|
||||
NSString *email = @"example@mail.com";
|
||||
// 使用上个页面传入的邮箱;若为空则使用占位邮箱
|
||||
NSString *email = self.email.length > 0 ? self.email : @"example@mail.com";
|
||||
_descLabel.text = [NSString stringWithFormat:template, email];
|
||||
}
|
||||
return _descLabel;
|
||||
|
||||
Reference in New Issue
Block a user