SHorizontalView.h 670 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 29 30 31
//
//  SHorizontalView.h
//  SVInSVDemo
//
//  Created by loufq on 12-4-27.
//  Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//

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

@class SHorizontalView;
@protocol SHorizontalViewDelegate <NSObject>

- (void)kwm_getSHorizontalViewCurrnetPage:(NSInteger)currentPage;

@end

@interface SHorizontalView : UIView<ATPagingViewDelegate,SVerticalViewDelegate>{
    ATPagingView* myPV; 
    SVerticalView* svVertical;
}

@property(nonatomic,strong)NSArray* ds;
@property(nonatomic,strong)NSIndexPath* curIndexPath;
@property(weak, nonatomic)id<SHorizontalViewDelegate>delegate;



@end