File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ + (void)showAlert:(TUIChatAuthControlType)type {
121
121
UIApplication *app = [UIApplication sharedApplication ];
122
122
NSURL *settingsURL = [NSURL URLWithString: UIApplicationOpenSettingsURLString];
123
123
if ([app canOpenURL: settingsURL]) {
124
- [app openURL : settingsURL];
124
+ [TUITool openLinkWithURL : settingsURL];
125
125
}
126
126
}]];
127
127
dispatch_async (dispatch_get_main_queue (), ^{
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ - (void)didSelectAddOption:(TUICommonTextCell *)cell {
223
223
224
224
- (void )didSelectGroupNick : (TUICommonTextCell *)cell {
225
225
TUIModifyViewData *data = [[TUIModifyViewData alloc ] init ];
226
- data.inputLength = 8 ;
226
+ // data.inputLength = 8;
227
227
data.title = TIMCommonLocalizableString (TUIKitGroupProfileEditAlias);
228
228
data.content = self.dataProvider .selfInfo .nameCard ;
229
229
data.desc = TIMCommonLocalizableString (TUIKitGroupProfileEditAliasDesc);
@@ -244,7 +244,7 @@ - (void)didSelectCommon {
244
244
handler: ^(UIAlertAction *_Nonnull action) {
245
245
TUIModifyViewData *data = [[TUIModifyViewData alloc ] init ];
246
246
data.title = TIMCommonLocalizableString (TUIKitGroupProfileEditGroupName);
247
- data.inputLength = 12 ;
247
+ // data.inputLength = 12;
248
248
data.content = weakSelf.dataProvider .groupInfo .groupName ;
249
249
data.desc = TIMCommonLocalizableString (TUIKitGroupProfileEditGroupName);
250
250
TUIModifyView *modify = [[TUIModifyView alloc ] init ];
Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ - (void)showRequestMicAuthorizationAlert {
616
616
UIApplication *app = [UIApplication sharedApplication ];
617
617
NSURL *settingsURL = [NSURL URLWithString: UIApplicationOpenSettingsURLString];
618
618
if ([app canOpenURL: settingsURL]) {
619
- [app openURL : settingsURL];
619
+ [TUITool openLinkWithURL : settingsURL];
620
620
}
621
621
}]];
622
622
dispatch_async (dispatch_get_main_queue (), ^{
Original file line number Diff line number Diff line change @@ -624,7 +624,7 @@ - (void)showRequestMicAuthorizationAlert {
624
624
UIApplication *app = [UIApplication sharedApplication ];
625
625
NSURL *settingsURL = [NSURL URLWithString: UIApplicationOpenSettingsURLString];
626
626
if ([app canOpenURL: settingsURL]) {
627
- [app openURL : settingsURL];
627
+ [TUITool openLinkWithURL : settingsURL];
628
628
}
629
629
}]];
630
630
dispatch_async (dispatch_get_main_queue (), ^{
You can’t perform that action at this time.
0 commit comments