Skip to content

Commit 3abd9e1

Browse files
committed
improved code formatting
1 parent 9d999ca commit 3abd9e1

File tree

3 files changed

+33
-34
lines changed

3 files changed

+33
-34
lines changed

Example/AppDelegate.m

+6-7
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,17 @@ - (void)setUpNavigationBarAppearance {
4242
backgroundImage = [UIImage imageNamed:@"navigationbar_background_tall"];
4343

4444
textAttributes = @{
45-
NSFontAttributeName: [UIFont boldSystemFontOfSize:18],
46-
NSForegroundColorAttributeName: [UIColor blackColor],
45+
NSFontAttributeName : [UIFont boldSystemFontOfSize:18],
46+
NSForegroundColorAttributeName : [UIColor blackColor],
4747
};
4848
} else {
4949
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0
5050
backgroundImage = [UIImage imageNamed:@"navigationbar_background"];
51-
5251
textAttributes = @{
53-
UITextAttributeFont: [UIFont boldSystemFontOfSize:18],
54-
UITextAttributeTextColor: [UIColor blackColor],
55-
UITextAttributeTextShadowColor: [UIColor clearColor],
56-
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetZero],
52+
UITextAttributeFont : [UIFont boldSystemFontOfSize:18],
53+
UITextAttributeTextColor : [UIColor blackColor],
54+
UITextAttributeTextShadowColor : [UIColor clearColor],
55+
UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetZero],
5756
};
5857
#endif
5958
}

Example/CYLTabBarControllerConfig.m

+25-25
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ @implementation CYLTabBarControllerConfig
4444
- (CYLTabBarController *)tabBarController {
4545
if (_tabBarController == nil) {
4646
CYLTabBarController *tabBarController = [CYLTabBarController tabBarControllerWithViewControllers:self.viewControllers
47-
tabBarItemsAttributes:self.tabBarItemsAttributesForController];
47+
tabBarItemsAttributes:self.tabBarItemsAttributesForController];
4848
[self customizeTabBarAppearance:tabBarController];
4949
_tabBarController = tabBarController;
5050
}
@@ -85,31 +85,31 @@ - (NSArray *)viewControllers {
8585
}
8686

8787
- (NSArray *)tabBarItemsAttributesForController {
88-
NSDictionary *dict1 = @{
89-
CYLTabBarItemTitle : @"首页",
90-
CYLTabBarItemImage : @"home_normal",
91-
CYLTabBarItemSelectedImage : @"home_highlight",
92-
};
93-
NSDictionary *dict2 = @{
94-
CYLTabBarItemTitle : @"同城",
95-
CYLTabBarItemImage : @"mycity_normal",
96-
CYLTabBarItemSelectedImage : @"mycity_highlight",
97-
};
98-
NSDictionary *dict3 = @{
99-
CYLTabBarItemTitle : @"消息",
100-
CYLTabBarItemImage : @"message_normal",
101-
CYLTabBarItemSelectedImage : @"message_highlight",
102-
};
103-
NSDictionary *dict4 = @{
104-
CYLTabBarItemTitle : @"我的",
105-
CYLTabBarItemImage : @"account_normal",
106-
CYLTabBarItemSelectedImage : @"account_highlight"
107-
};
88+
NSDictionary *firstTabBarItemsAttributes = @{
89+
CYLTabBarItemTitle : @"首页",
90+
CYLTabBarItemImage : @"home_normal",
91+
CYLTabBarItemSelectedImage : @"home_highlight",
92+
};
93+
NSDictionary *secondTabBarItemsAttributes = @{
94+
CYLTabBarItemTitle : @"同城",
95+
CYLTabBarItemImage : @"mycity_normal",
96+
CYLTabBarItemSelectedImage : @"mycity_highlight",
97+
};
98+
NSDictionary *thirdTabBarItemsAttributes = @{
99+
CYLTabBarItemTitle : @"消息",
100+
CYLTabBarItemImage : @"message_normal",
101+
CYLTabBarItemSelectedImage : @"message_highlight",
102+
};
103+
NSDictionary *fourthTabBarItemsAttributes = @{
104+
CYLTabBarItemTitle : @"我的",
105+
CYLTabBarItemImage : @"account_normal",
106+
CYLTabBarItemSelectedImage : @"account_highlight"
107+
};
108108
NSArray *tabBarItemsAttributes = @[
109-
dict1,
110-
dict2,
111-
dict3,
112-
dict4
109+
firstTabBarItemsAttributes,
110+
secondTabBarItemsAttributes,
111+
thirdTabBarItemsAttributes,
112+
fourthTabBarItemsAttributes
113113
];
114114
return tabBarItemsAttributes;
115115
}

Example/Classes/View/CYLPlusButtonSubclass.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ - (void)layoutSubviews {
6666
Create a custom UIButton with title and add it to the center of our tab bar
6767
*
6868
*/
69-
+ (instancetype)plusButton {
69+
+ (id)plusButton {
7070
CYLPlusButtonSubclass *button = [[CYLPlusButtonSubclass alloc] init];
7171
UIImage *buttonImage = [UIImage imageNamed:@"post_normal"];
7272
[button setImage:buttonImage forState:UIControlStateNormal];
@@ -86,7 +86,7 @@ + (instancetype)plusButton {
8686
Create a custom UIButton without title and add it to the center of our tab bar
8787
*
8888
*/
89-
//+ (instancetype)plusButton
89+
//+ (id)plusButton
9090
//{
9191
//
9292
// UIImage *buttonImage = [UIImage imageNamed:@"hood.png"];

0 commit comments

Comments
 (0)