-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchViewController.m
64 lines (47 loc) · 1.29 KB
/
SearchViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// SearchViewController.m
// VKMusic
//
// Created by Evgeniy Kirpichenko on 1/6/13.
// Copyright (c) 2013 Evgeniy Kirpichenko. All rights reserved.
//
#import "SearchViewController.h"
#import "AudioSearchApiRequest.h"
@interface SearchViewController () <UITextFieldDelegate>
@property (nonatomic,copy) NSString *searchKeyword;
@end
@implementation SearchViewController
#pragma mark -
#pragma mark life cycle
- (void)dealloc
{
[self setSearchKeyword:nil];
}
#pragma mark -
#pragma mark template method
- (BasePaginatedApiRequest *)audioApiRequest
{
AudioSearchApiRequest *apiRequest = [[AudioSearchApiRequest alloc] init];
[apiRequest setQuery:[self searchKeyword]];
[apiRequest setAutoComplete:YES];
return apiRequest;
}
#pragma mark -
#pragma mark UITableViewDataSource
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
AudioCell *cell = (AudioCell *)[super tableView:tableView cellForRowAtIndexPath:indexPath];
[cell setDelegate:self];
return cell;
}
#pragma mark -
#pragma mark UITextFieldDelegate
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[self setSearchKeyword:[textField text]];
[self clean];
[self loadAudio];
[textField resignFirstResponder];
return YES;
}
@end