SVerticalView.h 583 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
//
//  SVerticalView.h
//  SVInSVDemo
//
//  Created by loufq on 12-4-27.
//  Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h> 
#import "ATPagingView.h"

@class SVerticalView;
@protocol SVerticalViewDelegate <NSObject>

- (void)kwm_getSVerticalViewCurrnetPage:(NSInteger)currentPage;

@end

@interface SVerticalView : UIView<ATPagingViewDelegate>
@property (nonatomic)  ATPagingView* myPV;
@property(nonatomic,assign) int curIndex;
@property(nonatomic,strong)NSArray* ds;
@property(weak,nonatomic) id<SVerticalViewDelegate>delegate;



@end