Skip to content

Commit

Permalink
Release 1.2.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Apr 21, 2016
1 parent b22295d commit 11e03a3
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 80 deletions.
2 changes: 1 addition & 1 deletion LCBannerView.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LCBannerView"
s.version = "1.2.3"
s.version = "1.2.5"
s.summary = "A very popular and highly customized banner view! Infinite loop! Support: http://LeoDev.me"
s.homepage = "https://github.com/iTofu/LCBannerView"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
21 changes: 13 additions & 8 deletions LCBannerView/LCBannerView.h
@@ -1,13 +1,12 @@
//
// LCBannerView.h
// LCBannerViewDemo
//
// Created by Leo on 15/11/30.
// Copyright © 2015年 Leo. All rights reserved.
//
// GitHub: http://github.com/iTofu
// Mail: mailto:devtip@163.com
// V 1.2.3
// V 1.2.5

#import <UIKit/UIKit.h>

Expand All @@ -19,6 +18,12 @@

@optional

/**
* LCBannerView delegate method.
*
* @param bannerView LCBannerView
* @param index clicked index
*/
- (void)bannerView:(LCBannerView *)bannerView didClickedImageIndex:(NSInteger)index;

@end
Expand All @@ -28,10 +33,10 @@
@interface LCBannerView : UIView


#pragma mark - Property
#pragma mark - Properties

/**
* Page control view bottom distance. Default is `10.0f`.
* Page control to bottom distance. Default is `10.0f`.
*/
@property (nonatomic, assign) CGFloat pageDistance;

Expand All @@ -44,7 +49,7 @@
#pragma mark - Class methods

/**
* init a LCBannerView object from local
* Init a LCBannerView object from local.
*
* @param frame frame
* @param delegate delegate
Expand All @@ -65,7 +70,7 @@ currentPageIndicatorTintColor:(UIColor *)currentPageIndicatorTintColor
pageIndicatorTintColor:(UIColor *)pageIndicatorTintColor;

/**
* init a LCBannerView object from internet
* Init a LCBannerView object from internet.
*
* @param frame frame
* @param delegate delegate
Expand All @@ -89,7 +94,7 @@ currentPageIndicatorTintColor:(UIColor *)currentPageIndicatorTintColor
#pragma mark - Instance methods

/**
* init a LCBannerView object from local
* Init a LCBannerView object from local.
*
* @param frame frame
* @param delegate delegate
Expand All @@ -110,7 +115,7 @@ currentPageIndicatorTintColor:(UIColor *)currentPageIndicatorTintColor
pageIndicatorTintColor:(UIColor *)pageIndicatorTintColor;

/**
* init a LCBannerView object from internet
* Init a LCBannerView object from internet.
*
* @param frame frame
* @param delegate delegate
Expand Down

0 comments on commit 11e03a3

Please sign in to comment.