//// SSView.h// SVInSVDemo//// Created by loufq on 12-4-27.// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.//#import <UIKit/UIKit.h>#import "SHorizontalView.h"#import "SVerticalView.h"@classSSView;@protocolSSViewDelegate<NSObject>-(void)kwm_getSSViewCurrentPage:(NSInteger)currentPage;@end@interfaceSSView:UIView<SHorizontalViewDelegate>@property(nonatomic)SHorizontalView*svHorizontal;@property(nonatomic)SVerticalView*svVertical;@property(weak,nonatomic)id<SSViewDelegate>delegate;@property(nonatomic,strong)NSArray*dsOri;@property(nonatomic,strong)NSIndexPath*curIndexPath;//ds:array with array+(id)createWithFrame:(CGRect)frameds:(NSArray*)ds;-(id)initWithFrame:(CGRect)frameds:(NSArray*)ds;@end