Skip to content

Commit 97f612e

Browse files
committed
add version info to all file
1 parent ab73d93 commit 97f612e

31 files changed

+74
-30
lines changed

.github/issue_template.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## Base Info for this issue
2+
3+
<!--- 基本信息 -->
4+
5+
<!--- 每个类的第五行都标记有版本号,请贴出。 -->
6+
7+
1. Version:v1.6.4
8+
2. Language:Objective-C
9+
4. iOS System Version:iOS10
10+
5. Prototype(是否是真机):YES
11+
6. Issue Type:Crash、Bug、Enhancement(希望能支持一个新需求)、Q-A
12+
13+
## 1. How to repeat the problem.
14+
<!--- 请详细描述下复现步骤。 -->
15+
16+
## 2. Please help me in this way.
17+
<!--- 请详细描述下我需要怎么做才能符合你的需求。 -->
18+
19+
## 3. Here is a Demo.
20+
21+
<!--- 尽量提供一个可以复现的Demo,我的邮箱:luohanchenyilong@163.com。 -->
22+
23+
## 4. Here is my Debug log
24+
25+
<!--- 请尽量提供详细的日志打印信息,控制台默认会有网络请求的打印信息,请将相关的日志贴出-->
26+
27+
28+

.github/pull_request_template.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## My issue:
2+
<!--- Please describe which issue do you want to fix. -->
3+
4+
## What I have done:
5+
6+
<!--- Please mention me to merge with wechat:chenyilong1010 -->
7+

CYLTabBarController.xcodeproj/project.pbxproj

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
9A1559DE1CB6D56500CAB1AF /* CYLDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1559D51CB6D56500CAB1AF /* CYLDetailsViewController.m */; };
1616
9A1559DF1CB6D56500CAB1AF /* CYLSameCityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1559D71CB6D56500CAB1AF /* CYLSameCityViewController.m */; };
1717
9A1559E41CB6EB1F00CAB1AF /* CYLPlusButtonSubclass.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1559E31CB6EB1F00CAB1AF /* CYLPlusButtonSubclass.m */; };
18+
9AB37B221DC869E1000782F2 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AB37B211DC869E1000782F2 /* README.md */; };
19+
9AB37B241DC869F2000782F2 /* issue_template.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AB37B231DC869F2000782F2 /* issue_template.md */; };
1820
9AE667131C800085001DED12 /* UIViewController+CYLTabBarControllerExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE667121C800085001DED12 /* UIViewController+CYLTabBarControllerExtention.m */; };
1921
9AE942E71BDC933E00354519 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9AE942CB1BDC933E00354519 /* LaunchScreen.xib */; };
2022
9AE942E81BDC933E00354519 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9AE942CD1BDC933E00354519 /* Main.storyboard */; };
@@ -43,6 +45,8 @@
4345
9A1559E21CB6EB1F00CAB1AF /* CYLPlusButtonSubclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYLPlusButtonSubclass.h; sourceTree = "<group>"; };
4446
9A1559E31CB6EB1F00CAB1AF /* CYLPlusButtonSubclass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYLPlusButtonSubclass.m; sourceTree = "<group>"; };
4547
9A5B29111D3475BC009E1BEE /* CYLConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CYLConstants.h; sourceTree = "<group>"; };
48+
9AB37B211DC869E1000782F2 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = SOURCE_ROOT; };
49+
9AB37B231DC869F2000782F2 /* issue_template.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = issue_template.md; path = .github/issue_template.md; sourceTree = SOURCE_ROOT; };
4650
9AE667111C800085001DED12 /* UIViewController+CYLTabBarControllerExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+CYLTabBarControllerExtention.h"; sourceTree = "<group>"; };
4751
9AE667121C800085001DED12 /* UIViewController+CYLTabBarControllerExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+CYLTabBarControllerExtention.m"; sourceTree = "<group>"; };
4852
9AE942741BDC91B800354519 /* CYLTabBarController.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CYLTabBarController.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -178,6 +182,8 @@
178182
9AE942E31BDC933E00354519 /* Images.xcassets */,
179183
9AE942E41BDC933E00354519 /* Info.plist */,
180184
9AE942E51BDC933E00354519 /* main.m */,
185+
9AB37B211DC869E1000782F2 /* README.md */,
186+
9AB37B231DC869F2000782F2 /* issue_template.md */,
181187
);
182188
path = Example;
183189
sourceTree = "<group>";
@@ -288,7 +294,9 @@
288294
9AE942F91BDC937F00354519 /* CYLPlusButton.m in Sources */,
289295
9A1559C81CB6D4D300CAB1AF /* AppDelegate.m in Sources */,
290296
9A1559DD1CB6D56500CAB1AF /* CYLMineViewController.m in Sources */,
297+
9AB37B221DC869E1000782F2 /* README.md in Sources */,
291298
9AE942FB1BDC937F00354519 /* CYLTabBarController.m in Sources */,
299+
9AB37B241DC869F2000782F2 /* issue_template.md in Sources */,
292300
9AE942F11BDC933E00354519 /* main.m in Sources */,
293301
9AE942FA1BDC937F00354519 /* CYLTabBar.m in Sources */,
294302
);

CYLTabBarController/CYLConstants.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBarController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLPlusButton.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLPlusButton.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLPlusButton.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLPlusButton.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLTabBar.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBar.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLTabBar.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBar.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLTabBarController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBarController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/CYLTabBarController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBarController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

CYLTabBarController/UIViewController+CYLTabBarControllerExtention.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// UIViewController+CYLTabBarControllerExtention.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 16/2/26.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 16/2/26.
66
// Copyright © 2016年 https://github.com/ChenYilong .All rights reserved.
77
//
88

CYLTabBarController/UIViewController+CYLTabBarControllerExtention.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// UIViewController+CYLTabBarControllerExtention.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 16/2/26.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 16/2/26.
66
// Copyright © 2016年 https://github.com/ChenYilong .All rights reserved.
77
//
88

CYLTabBarControllerTests/CYLTabBarControllerTests.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBarControllerTests.m
33
// CYLTabBarControllerTests
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/25.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/25.
66
// Copyright (c) 2015年 https://github.com/ChenYilong .All rights reserved.
77
//
88

Example/AppDelegate.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//
22
// AppDelegate.h
3-
// DWCustomTabBarDemo
3+
// CYLTabBarControllerDemo
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/AppDelegate.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// AppDelegate.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/CYLTabBarControllerConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLTabBarControllerConfig.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/11/3.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/11/3.
66
// Copyright © 2015年 https://github.com/ChenYilong .All rights reserved.
77
//
88

Example/CYLTabBarControllerConfig.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
// CYLTabBarControllerConfig.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88
#import "CYLTabBarControllerConfig.h"
99

1010
@interface CYLBaseNavigationController : UINavigationController
1111
@end
12+
1213
@implementation CYLBaseNavigationController
1314

1415
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated {

Example/Classes/Module/Home/CYLHomeViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLHomeViewController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/Home/CYLHomeViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLHomeViewController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/Message/CYLMessageViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLMessageViewController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/Message/CYLMessageViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLMessageViewController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/Mine/CYLMineViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLMineViewController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/Mine/CYLMineViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLMineViewController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/SameCity/CYLDetailsViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLDetailsViewController.h
33
// CYLTabBarController
44
//
5-
// Created by Robert Dimitrov on 11/8/14.
5+
// v1.6.3 Created by Robert Dimitrov on 11/8/14.
66
// Copyright (c) 2014 Robert Dimitrov. All rights reserved.
77
//
88

Example/Classes/Module/SameCity/CYLDetailsViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLDetailsViewController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/SameCity/CYLSameCityViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLSameCityViewController.h
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/Module/SameCity/CYLSameCityViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CYLSameCityViewController.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 10/20/15.
66
// Copyright © 2015 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/View/CYLPlusButtonSubclass.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//
22
// CYLPlusButtonSubclass.h
3-
// DWCustomTabBarDemo
3+
// CYLTabBarControllerDemo
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/24.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/24.
66
// Copyright (c) 2015年 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/Classes/View/CYLPlusButtonSubclass.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//
22
// CYLPlusButtonSubclass.m
3-
// DWCustomTabBarDemo
3+
// CYLTabBarControllerDemo
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/24.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/24.
66
// Copyright (c) 2015年 https://github.com/ChenYilong . All rights reserved.
77
//
88

Example/main.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// main.m
33
// CYLTabBarController
44
//
5-
// Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/25.
5+
// v1.6.3 Created by 微博@iOS程序犭袁 ( http://weibo.com/luohanchenyilong/ ) on 15/10/25.
66
// Copyright (c) 2015年 https://github.com/ChenYilong .All rights reserved.
77
//
88

0 commit comments

Comments
 (0)