Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
222 lines (187 loc) · 7.91 KB

File metadata and controls

222 lines (187 loc) · 7.91 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
//
// SearchViewController.m
// Coding_iOS
//
// Created by jwill on 15/11/16.
// Copyright © 2015年 Coding. All rights reserved.
//
#import "SearchViewController.h"
#import "CategorySearchBar.h"
#import "KxMenu.h"
#import "AllSearchDisplayVC.h"
#import "FileViewController.h"
@interface SearchViewController ()<UISearchDisplayDelegate>//UITableViewDataSource,UITableViewDelegate,
@property (nonatomic,strong)UIView *searchView;
@property (strong, nonatomic) NSMutableArray *statusList;
@property (strong, nonatomic) CategorySearchBar *mySearchBar;
@property (strong, nonatomic) AllSearchDisplayVC *searchDisplayVC;
@property (nonatomic,strong) UITableView *tableview;
@property (nonatomic,strong) NSMutableArray *dataSource;
@property (nonatomic,assign) NSInteger selectIndex;
@property (nonatomic,assign) BOOL firstLoad;
@end
@implementation SearchViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title=@"搜索";
_selectIndex=0;
_statusList = @[@"项目",
@"任务",
@"讨论",
@"冒泡",
@"文档",
@"用户",
@"合并请求",
@"pull请求"].mutableCopy;
_firstLoad=TRUE;
[self buildUI];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
[self loadData];
[self.navigationController.navigationBar addSubview:_mySearchBar];
if (_firstLoad) {
[_mySearchBar becomeFirstResponder];
}
}
-(void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
[_mySearchBar resignFirstResponder];
[_mySearchBar removeFromSuperview];
_firstLoad=FALSE;
}
//基础化UI布局
-(void)buildUI{
self.view.backgroundColor=[UIColor colorWithHexString:@"0xeeeeee"];
//添加搜索框
_mySearchBar = ({
CategorySearchBar *searchBar = [[CategorySearchBar alloc] initWithFrame:CGRectMake(20,7, kScreen_Width-75, 31)];
searchBar.layer.cornerRadius=15;
searchBar.layer.masksToBounds=TRUE;
[searchBar.layer setBorderWidth:8];
[searchBar.layer setBorderColor:[UIColor whiteColor].CGColor];//设置边框为白色
[searchBar sizeToFit];
[searchBar setTintColor:[UIColor whiteColor]];
[searchBar insertBGColor:[UIColor colorWithHexString:@"0xffffff"]];
// [searchBar setImage:nil forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
// [searchBar setPositionAdjustment:UIOffsetMake(10,0) forSearchBarIcon:UISearchBarIconClear];
// searchBar.searchTextPositionAdjustment=UIOffsetMake(10,0);
[searchBar setHeight:30];
searchBar;
});
//初始化选项
NSMutableArray *menuItems = @[].mutableCopy;
[_statusList enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
KxMenuItem *menuItem = [KxMenuItem menuItem:obj image:nil target:self action:@selector(menuItemClicked:)];
menuItem.alignment=NSTextAlignmentLeft;
// menuItem.foreColor = [UIColor colorWithHexString:idx == _selectedStatusIndex? @"0x3bbd79": @"0x222222"];
menuItem.foreColor = [UIColor colorWithHexString:@"0xffffff"];
[menuItems addObject:menuItem];
}];
__weak typeof(self) weakSelf = self;
[_mySearchBar patchWithCategoryWithSelectBlock:^{
if ([KxMenu isShowingInView:[UIApplication sharedApplication].keyWindow]) {
[KxMenu dismissMenu:YES];
[weakSelf.mySearchBar becomeFirstResponder];
}else{
[weakSelf.mySearchBar resignFirstResponder];
[KxMenu setTitleFont:[UIFont systemFontOfSize:14]];
// [KxMenu setTintColor:[UIColor colorWithHexString:@"0x28303B" andAlpha:0.9]];
[KxMenu setTintColor:[UIColor colorWithHexString:@"0x28303B"]];
[KxMenu setOverlayColor:[UIColor clearColor]];
CGRect senderFrame = CGRectMake(weakSelf.searchView.frame.origin.x+50, 64, 0, 0);
[KxMenu showMenuInView:[UIApplication sharedApplication].keyWindow fromRect:senderFrame menuItems:menuItems];
}
}];
[_mySearchBar setSearchCategory:[_statusList objectAtIndex:_selectIndex]];
if (!_searchDisplayVC) {
_searchDisplayVC = ({
AllSearchDisplayVC *searchVC = [[AllSearchDisplayVC alloc] initWithSearchBar:_mySearchBar contentsController:self];
//自定义uisearchbar 要在这里重新申明
//需要重新调整下大小
searchVC.searchBar.frame=CGRectMake(20,7, kScreen_Width-75, 31);
searchVC.searchBar.layer.cornerRadius=15;
searchVC.searchBar.layer.masksToBounds=TRUE;
[searchVC.searchBar.layer setBorderWidth:8];
[searchVC.searchBar.layer setBorderColor:[UIColor whiteColor].CGColor];//设置边框为白色
//placeholder 要在此处设置,不然报错
[searchVC.searchBar setPlaceholder:@"项目/任务/讨论/冒泡等"];
searchVC.displaysSearchBarInNavigationBar=NO;
searchVC.parentVC = self;
searchVC.delegate=self;
searchVC;
});
}
self.navigationItem.rightBarButtonItem=[[UIBarButtonItem alloc]initWithTitle:@"取消" style:UIBarButtonItemStylePlain target:self action:@selector(popToMainVCAction)];
// //表格内容
// _tableview=({
// UITableView *tableview=[UITableView new];
// tableview.tableFooterView=[UIView new];
// tableview.separatorStyle=UITableViewCellSeparatorStyleNone;
// //解决左侧分割线偏短问题
// if ([tableview respondsToSelector:@selector(setSeparatorInset:)]) {
// [tableview setSeparatorInset:UIEdgeInsetsMake(0, 10, 0, 10)];
// }
// tableview.backgroundColor=[UIColor whiteColor];
// tableview.delegate=self;
// tableview.dataSource=self;
// tableview.rowHeight=45;
// //注册cell
// [tableview registerClass:[UITableViewCell class] forCellReuseIdentifier:@"UITableViewCell"];
// tableview;
// });
// [self.view addSubview:_tableview];
//
// [_tableview mas_makeConstraints:^(MASConstraintMaker *make) {
// make.edges.equalTo(self.view);
// }];
}
#pragma mark - loadData
-(void)loadData{
[_tableview reloadData];
}
//#pragma mark - Table view data source
//- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// return 3;
//}
//
//- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
// cell.textLabel.text=@"搜索记录";
// return cell;
//}
//
//
//- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
//{
//
//}
#pragma mark - event
//弹出到首页
-(void)popToMainVCAction
{
[self dismissViewControllerAnimated:NO completion:nil];
}
- (void)menuItemClicked:(KxMenuItem *)item{
NSInteger nowSelectIndex = [_statusList indexOfObject:item.title];
if (nowSelectIndex == NSNotFound || nowSelectIndex == _selectIndex) {
return;
}
_selectIndex = nowSelectIndex;
_searchDisplayVC.curSearchType=_selectIndex;
NSString *showStr=([[_statusList objectAtIndex:_selectIndex] length]>2)?[[_statusList objectAtIndex:_selectIndex] substringToIndex:[[_statusList objectAtIndex:_selectIndex] length]-2]:[_statusList objectAtIndex:_selectIndex];
[_mySearchBar setSearchCategory:showStr];
if (_searchDisplayVC.active&&(_mySearchBar.text.length>0)) {
NSLog(@"active And can search");
[_searchDisplayVC reloadDisplayData];
}else{
[_mySearchBar becomeFirstResponder];
}
}
@end
Morty Proxy This is a proxified and sanitized view of the page, visit original site.