File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,6 @@ - (void)registerUserAgent{
67
67
NSString *userAgent = [NSString userAgentStr ];
68
68
NSDictionary *dictionary = @{@" UserAgent" : userAgent};// User-Agent
69
69
[[NSUserDefaults standardUserDefaults ] registerDefaults: dictionary];
70
-
71
-
72
- // @available(iOS 10.0, *);
73
-
74
- // [UIColor colorNamed:@""]
75
70
}
76
71
77
72
#pragma lifeCycle
Original file line number Diff line number Diff line change 5
5
<key >CFBundleDevelopmentRegion </key >
6
6
<string >en </string >
7
7
<key >CFBundleDisplayName </key >
8
- <string >CODING 企业版 </string >
8
+ <string >企业 CODING </string >
9
9
<key >CFBundleExecutable </key >
10
10
<string >${EXECUTABLE_NAME} </string >
11
11
<key >CFBundleIdentifier </key >
17
17
<key >CFBundlePackageType </key >
18
18
<string >APPL </string >
19
19
<key >CFBundleShortVersionString </key >
20
- <string >2.9 </string >
20
+ <string >2.9.5 </string >
21
21
<key >CFBundleSignature </key >
22
22
<string >???? </string >
23
23
<key >CFBundleURLTypes </key >
28
28
</dict >
29
29
</array >
30
30
<key >CFBundleVersion </key >
31
- <string >2.9.201805251720 </string >
31
+ <string >2.9.5.201806190930 </string >
32
32
<key >ITSAppUsesNonExemptEncryption </key >
33
33
<false />
34
34
<key >LSApplicationQueriesSchemes </key >
Original file line number Diff line number Diff line change 37
37
</dict >
38
38
</array >
39
39
<key >CFBundleVersion </key >
40
- <string >5.4.201806041200 </string >
40
+ <string >5.4.201806151800 </string >
41
41
<key >ITSAppUsesNonExemptEncryption </key >
42
42
<false />
43
43
<key >LSApplicationQueriesSchemes </key >
Original file line number Diff line number Diff line change @@ -59,7 +59,12 @@ - (void)dealloc {
59
59
60
60
61
61
- (id )init {
62
- if ( (self = [super initWithFrame: [[UIApplication sharedApplication ] statusBarFrame ]]) ){
62
+ CGRect frame = [[UIApplication sharedApplication ] statusBarFrame ];
63
+ if (frame.size .width < 1.0 ) {
64
+ frame = [UIScreen mainScreen ].bounds ;
65
+ frame.size .height = 20 ;
66
+ }
67
+ if ( (self = [super initWithFrame: frame]) ){
63
68
64
69
_maxHistoryDTLength = (NSInteger )CGRectGetWidth (self.bounds );
65
70
_historyDT = malloc (sizeof (CFTimeInterval ) * _maxHistoryDTLength);
You can’t perform that action at this time.
0 commit comments