55 lines
1.5 KiB
Objective-C
55 lines
1.5 KiB
Objective-C
//
|
|
// NTESSearchTeamViewController.m
|
|
// NIM
|
|
//
|
|
// Created by Xuhui on 15/3/19.
|
|
// Copyright (c) 2015年 Netease. All rights reserved.
|
|
//
|
|
|
|
#import "NTESSearchTeamViewController.h"
|
|
#import "SVProgressHUD.h"
|
|
#import "Toast+UIView.h"
|
|
#import "NTESJionTeamViewController.h"
|
|
|
|
@interface NTESSearchTeamViewController () <UITextFieldDelegate>
|
|
@property (strong, nonatomic) IBOutlet UITextField *textField;
|
|
|
|
@end
|
|
|
|
@implementation NTESSearchTeamViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view from its nib.
|
|
self.navigationItem.title = @"搜索加入群组";
|
|
self.textField.delegate = self;
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
|
|
}
|
|
|
|
#pragma mark - UITextFieldDelegate
|
|
|
|
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
|
[self.textField endEditing:YES];
|
|
[SVProgressHUD show];
|
|
[[NIMSDK sharedSDK].teamManager fetchTeamInfo:textField.text completion:^(NSError *error, NIMTeam *team) {
|
|
[SVProgressHUD dismiss];
|
|
if(!error) {
|
|
NTESJionTeamViewController *vc = [[NTESJionTeamViewController alloc] initWithNibName:nil bundle:nil];
|
|
vc.joinTeam = team;
|
|
[self.navigationController pushViewController:vc animated:YES];
|
|
} else {
|
|
[self.view makeToast:error.localizedDescription];
|
|
NSLog(@"Fetch team info failed: %@", error.localizedDescription);
|
|
}
|
|
}];
|
|
|
|
return YES;
|
|
}
|
|
|
|
@end
|