1234567891011121314151617181920 |
- #import <UIKit/UIKit.h>
- typedef void(^SBSelectPropertyResultBlock)(NSInteger selectedRow);
- @interface SBSelectPropertyViewController : UITableViewController
- @property (nonatomic, assign) NSInteger activeRow;
- - (id)initWithData:(NSArray*)data
- resultBlock:(SBSelectPropertyResultBlock)resultBlock;
- @end
|