Skip to content

Commit bbcc48d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 4285282 + 373f076 commit bbcc48d

151 files changed

Lines changed: 5998 additions & 299 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Coding_iOS.xcodeproj/project.pbxproj

Lines changed: 387 additions & 128 deletions
Large diffs are not rendered by default.

Coding_iOS/.DS_Store

6 KB
Binary file not shown.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//
2+
// AllSearchDisplayVC.h
3+
// Coding_iOS
4+
//
5+
// Created by jwill on 15/11/19.
6+
// Copyright © 2015年 Coding. All rights reserved.
7+
//
8+
9+
@protocol AllSearchDisplayVCdelegate <NSObject>
10+
11+
@optional
12+
13+
@end
14+
15+
typedef NS_ENUM(NSUInteger, eSearchType) {
16+
eSearchType_Project=0,
17+
eSearchType_Task,
18+
eSearchType_Topic,
19+
eSearchType_Tweet,
20+
eSearchType_Document,
21+
eSearchType_User,
22+
eSearchType_Merge,
23+
eSearchType_Pull,
24+
eSearchType_All
25+
};
26+
27+
#import <UIKit/UIKit.h>
28+
29+
@interface AllSearchDisplayVC : UISearchDisplayController
30+
@property (nonatomic,weak)UIViewController *parentVC;
31+
@property (nonatomic,assign)eSearchType curSearchType;
32+
@property (assign)id<AllSearchDisplayVCdelegate> delegate;
33+
-(void)reloadDisplayData;
34+
@end

0 commit comments

Comments
 (0)