File tree Expand file tree Collapse file tree 11 files changed +15
-15
lines changed
Expand file tree Collapse file tree 11 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ -(void)viewDidLoad {
5151 UISearchBar *searchBar = [[UISearchBar alloc ] init ];
5252 searchBar.delegate = self;
5353 [searchBar sizeToFit ];
54- [searchBar setPlaceholder: @" 昵称,个性后缀 " ];
54+ [searchBar setPlaceholder: @" 昵称,用户名 " ];
5555 searchBar;
5656 });
5757 [self .myTableView sizeToFit ];
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ - (void)viewDidLoad {
5959 UISearchBar *searchBar = [[UISearchBar alloc ] init ];
6060 searchBar.delegate = self;
6161 [searchBar sizeToFit ];
62- [searchBar setPlaceholder: @" 昵称/个性后缀 " ];
62+ [searchBar setPlaceholder: @" 昵称/用户名 " ];
6363 searchBar;
6464 });
6565 _myTableView.tableHeaderView = _mySearchBar;
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ - (UIView *)customHeaderView{
5858 headerLabel.textColor = kColor999 ;
5959 headerLabel.numberOfLines = 0 ;
6060 headerLabel.textAlignment = NSTextAlignmentCenter;
61- headerLabel.text = @" 您还未设置过用户名(个性后缀) \n 设置后才能正常登录!" ;
61+ headerLabel.text = @" 您还未设置过用户名\n 设置后才能正常登录!" ;
6262 [headerLabel setCenter: headerV.center];
6363 [headerV addSubview: headerLabel];
6464 return headerV;
@@ -92,7 +92,7 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger
9292- (UITableViewCell *)tableView : (UITableView *)tableView cellForRowAtIndexPath : (NSIndexPath *)indexPath {
9393 Input_OnlyText_Cell *cell = [tableView dequeueReusableCellWithIdentifier: kCellIdentifier_Input_OnlyText_Cell_Text forIndexPath: indexPath];
9494 __weak typeof (self) weakSelf = self;
95- [cell setPlaceholder: @" 用户名(个性后缀) " value: self .global_key];
95+ [cell setPlaceholder: @" 用户名" value: self .global_key];
9696 cell.textValueChangedBlock = ^(NSString *valueStr){
9797 weakSelf.global_key = valueStr;
9898 };
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
301301 __weak typeof (self) weakSelf = self;
302302 if (_medthodType == RegisterMethodEamil) {
303303 if (indexPath.row == 0 ) {
304- [cell setPlaceholder: @" 用户名(个性后缀) " value: self .myRegister.global_key];
304+ [cell setPlaceholder: @" 用户名" value: self .myRegister.global_key];
305305 cell.textValueChangedBlock = ^(NSString *valueStr){
306306 weakSelf.myRegister .global_key = valueStr;
307307 };
@@ -349,7 +349,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
349349 }
350350 }else {
351351 if (indexPath.row == 0 ) {
352- [cell setPlaceholder: @" 用户名(个性后缀) " value: self .myRegister.global_key];
352+ [cell setPlaceholder: @" 用户名" value: self .myRegister.global_key];
353353 cell.textValueChangedBlock = ^(NSString *valueStr){
354354 weakSelf.myRegister .global_key = valueStr;
355355 };
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
9090 TitleValueCell *cell = [tableView dequeueReusableCellWithIdentifier: kCellIdentifier_TitleValue forIndexPath: indexPath];
9191 if (indexPath.row == 0 ) {
9292 cell.selectionStyle = UITableViewCellSelectionStyleNone;
93- [cell setTitleStr: @" 个性后缀 " valueStr: self .myUser.global_key];
93+ [cell setTitleStr: @" 用户名 " valueStr: self .myUser.global_key];
9494 }else {
9595 cell.selectionStyle = self.myUser .email_validation .boolValue ? UITableViewCellSelectionStyleNone: UITableViewCellSelectionStyleDefault;
9696 NSString *valueStr = (self.myUser .email .length <= 0 ? @" 未绑定" :
@@ -183,7 +183,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
183183 if (indexPath.section == 0 ) {
184184 TitleValueCell *cell = [tableView dequeueReusableCellWithIdentifier: kCellIdentifier_TitleValue forIndexPath: indexPath];
185185 cell.selectionStyle = UITableViewCellSelectionStyleNone;
186- [cell setTitleStr: @" 个性后缀 " valueStr: self .myUser.global_key];
186+ [cell setTitleStr: @" 用户名 " valueStr: self .myUser.global_key];
187187 [tableView addLineforPlainCell: cell forRowAtIndexPath: indexPath withLeftSpace: kPaddingLeftWidth ];
188188 return cell;
189189 }else if (indexPath.section == 1 ){
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ - (void)loadView{
8888 UISearchBar *searchBar = [[UISearchBar alloc ] init ];
8989 searchBar.delegate = self;
9090 [searchBar sizeToFit ];
91- [searchBar setPlaceholder: @" 昵称/个性后缀 " ];
91+ [searchBar setPlaceholder: @" 昵称/用户名 " ];
9292 searchBar;
9393 });
9494 _myTableView.tableHeaderView = _mySearchBar;
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ - (void)viewDidLoad{
7272 UISearchBar *searchBar = [[UISearchBar alloc ] init ];
7373 searchBar.delegate = self;
7474 [searchBar sizeToFit ];
75- [searchBar setPlaceholder: @" 昵称/个性后缀 " ];
75+ [searchBar setPlaceholder: @" 昵称/用户名 " ];
7676 searchBar;
7777 });
7878 _myTableView.tableHeaderView = _mySearchBar;
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
113113 [cell setTitleStr: @" 最后活动" valueStr: [_curUser.last_activity_at string_yyyy_MM_dd ]];
114114 break ;
115115 default :
116- [cell setTitleStr: @" 个性后缀 " valueStr: _curUser.global_key];
116+ [cell setTitleStr: @" 用户名 " valueStr: _curUser.global_key];
117117 break ;
118118 }
119119 break ;
@@ -242,7 +242,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
242242 [cell setTitleStr: @" 最后活动" valueStr: [_curUser.last_activity_at string_yyyy_MM_dd ]];
243243 break ;
244244 default :
245- [cell setTitleStr: @" 个性后缀 " valueStr: _curUser.global_key];
245+ [cell setTitleStr: @" 用户名 " valueStr: _curUser.global_key];
246246 break ;
247247 }
248248 break ;
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ - (void)viewDidLoad{
101101 UISearchBar *searchBar = [[UISearchBar alloc ] init ];
102102 searchBar.delegate = self;
103103 [searchBar sizeToFit ];
104- [searchBar setPlaceholder: @" 昵称/个性后缀 " ];
104+ [searchBar setPlaceholder: @" 昵称/用户名 " ];
105105 searchBar;
106106 });
107107 _myTableView.tableHeaderView = _mySearchBar;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ - (NSString *)goToLoginTipWithCaptcha:(BOOL)needCaptcha{
5252 return @" 请填写企业域名" ;
5353 }
5454 if (!_email || _email.length <= 0 ) {
55- return @" 请填写「手机号码/电子邮箱/个性后缀 」" ;
55+ return @" 请填写「手机号码/电子邮箱/用户名 」" ;
5656 }
5757 if (!_password || _password.length <= 0 ) {
5858 return @" 请填写密码" ;
You can’t perform that action at this time.
0 commit comments