Skip to content

Commit 5b5ce8d

Browse files
committed
基本结构~
1 parent 5429452 commit 5b5ce8d

7 files changed

Lines changed: 569 additions & 18 deletions

File tree

Coding_iOS.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -900,6 +900,7 @@
900900
D066BB401BF623DD005AB5D6 /* ProjectAboutOthersListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D066BB3F1BF623DD005AB5D6 /* ProjectAboutOthersListCell.m */; };
901901
D09AA5AF1BFCBAA0008CA9EB /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D09AA5AE1BFCBAA0008CA9EB /* [email protected] */; };
902902
D09AA5B11BFCBABC008CA9EB /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D09AA5B01BFCBABC008CA9EB /* [email protected] */; };
903+
D09AA5B71BFDA38D008CA9EB /* AllSearchDisplayVC.m in Sources */ = {isa = PBXBuildFile; fileRef = D09AA5B61BFDA38D008CA9EB /* AllSearchDisplayVC.m */; };
903904
D09E6AAF1BF826AC009D37F8 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D09E6AA51BF826AC009D37F8 /* [email protected] */; };
904905
D09E6AB01BF826AC009D37F8 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D09E6AA61BF826AC009D37F8 /* [email protected] */; };
905906
D09E6AB11BF826AC009D37F8 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D09E6AA71BF826AC009D37F8 /* [email protected] */; };
@@ -2315,6 +2316,8 @@
23152316
D066BB3F1BF623DD005AB5D6 /* ProjectAboutOthersListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProjectAboutOthersListCell.m; sourceTree = "<group>"; };
23162317
D09AA5AE1BFCBAA0008CA9EB /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
23172318
D09AA5B01BFCBABC008CA9EB /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2319+
D09AA5B51BFDA38D008CA9EB /* AllSearchDisplayVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllSearchDisplayVC.h; sourceTree = "<group>"; };
2320+
D09AA5B61BFDA38D008CA9EB /* AllSearchDisplayVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllSearchDisplayVC.m; sourceTree = "<group>"; };
23182321
D09E6AA51BF826AC009D37F8 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
23192322
D09E6AA61BF826AC009D37F8 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
23202323
D09E6AA71BF826AC009D37F8 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
@@ -3956,6 +3959,8 @@
39563959
D066BB391BF30EB9005AB5D6 /* ProjectSquareViewController.m */,
39573960
D09E6ACF1BF9D999009D37F8 /* SearchViewController.h */,
39583961
D09E6AD01BF9D999009D37F8 /* SearchViewController.m */,
3962+
D09AA5B51BFDA38D008CA9EB /* AllSearchDisplayVC.h */,
3963+
D09AA5B61BFDA38D008CA9EB /* AllSearchDisplayVC.m */,
39593964
);
39603965
path = Controllers;
39613966
sourceTree = "<group>";
@@ -5524,6 +5529,7 @@
55245529
8EF643D119FF7E2900F7EEB0 /* TweetSendTextCell.m in Sources */,
55255530
8EA6D22319E240C40076D59C /* XTSegmentControl.m in Sources */,
55265531
4E6D71891A75F00E005AD988 /* YLGIFImage.m in Sources */,
5532+
D09AA5B71BFDA38D008CA9EB /* AllSearchDisplayVC.m in Sources */,
55275533
0A27A05D1AB5A13B00067833 /* TweetSendLocationDetailViewController.m in Sources */,
55285534
0AB591B01AB6D6BE0076C454 /* TweetSendMapAnnotation.m in Sources */,
55295535
4ECF70491B185BCC000280FF /* MRPR.m in Sources */,
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
typedef NS_ENUM(NSUInteger, eSearchType) {
10+
eSearchType_Project=0,
11+
eSearchType_Task,
12+
eSearchType_Topic,
13+
eSearchType_Tweet,
14+
eSearchType_Document,
15+
eSearchType_User,
16+
eSearchType_Merge,
17+
eSearchType_Pull,
18+
eSearchType_All
19+
};
20+
21+
#import <UIKit/UIKit.h>
22+
23+
@interface AllSearchDisplayVC : UISearchDisplayController
24+
@property (nonatomic,weak)UIViewController *parentVC;
25+
@property (nonatomic,assign)eSearchType curSearchType;
26+
@end

0 commit comments

Comments
 (0)