@@ -326,42 +326,3 @@ - (ASPresentationAnchor)presentationAnchorForWebAuthenticationSession:(ASWebAuth
326326}
327327
328328@end
329-
330- @implementation AccountSelectionViewController
331-
332- - (void )viewDidLoad {
333- [super viewDidLoad ];
334- // Do any additional setup after loading the view.
335-
336- UIButton *localAccountButton = [UIButton buttonWithType: UIButtonTypeSystem];
337- [localAccountButton setTitle: @" Local Account" forState: UIControlStateNormal];
338- [localAccountButton addTarget: self action: @selector (addLocalAccount ) forControlEvents: UIControlEventTouchUpInside];
339- localAccountButton.frame = CGRectMake (50 , 100 , 200 , 50 );
340- [self .view addSubview: localAccountButton];
341-
342- UIButton *microsoftAccountButton = [UIButton buttonWithType: UIButtonTypeSystem];
343- [microsoftAccountButton setTitle: @" Microsoft Account" forState: UIControlStateNormal];
344- [microsoftAccountButton addTarget: self action: @selector (addMicrosoftAccount ) forControlEvents: UIControlEventTouchUpInside];
345- microsoftAccountButton.frame = CGRectMake (50 , 200 , 200 , 50 );
346- [self .view addSubview: microsoftAccountButton];
347-
348- UIButton *elyByAccountButton = [UIButton buttonWithType: UIButtonTypeSystem];
349- [elyByAccountButton setTitle: @" Ely.by Account" forState: UIControlStateNormal];
350- [elyByAccountButton addTarget: self action: @selector (addElyByAccount ) forControlEvents: UIControlEventTouchUpInside];
351- elyByAccountButton.frame = CGRectMake (50 , 300 , 200 , 50 );
352- [self .view addSubview: elyByAccountButton];
353- }
354-
355- - (void )addLocalAccount {
356- // Handle adding local account
357- }
358-
359- - (void )addMicrosoftAccount {
360- // Handle adding Microsoft account
361- }
362-
363- - (void )addElyByAccount {
364- // Handle adding Ely.by account
365- }
366-
367- @end
0 commit comments