redribben

options

Jan 28th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import <UIKit/UIKit.h>
  2.  
  3. @interface BMOptionCell : UITableViewCell
  4.  
  5. @property (nonatomic, weak) NSString *name; // Name of setting
  6. @property (nonatomic, strong) IBOutlet UISwitch *cellSwitch; //Switch for settings
  7.  
  8. @property (nonatomic, strong) NSString *detail; // Setting details
  9. @property (nonatomic, strong) NSString *setOn;  // Setting is set to On
  10. @property (nonatomic, strong) NSString *setOff;  // Setting is set to Off
  11. @property (nonatomic, strong) NSUserDefaults *preferred; // The state at which it has been set.
  12. //@property (nonatomic, strong) NSString *imageFile; // image filename of recipe
  13.  
  14. @end
Advertisement
Add Comment
Please, Sign In to add comment