SBSelectPropertyViewController.h 489 B

1234567891011121314151617181920
  1. //
  2. // SBSelectPropertyViewController.h
  3. // JDStatusBarNotificationExample
  4. //
  5. // Created by Markus Emrich on 09.11.13.
  6. // Copyright (c) 2013 Markus. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^SBSelectPropertyResultBlock)(NSInteger selectedRow);
  10. @interface SBSelectPropertyViewController : UITableViewController
  11. @property (nonatomic, assign) NSInteger activeRow;
  12. - (id)initWithData:(NSArray*)data
  13. resultBlock:(SBSelectPropertyResultBlock)resultBlock;
  14. @end