~danielborges93/openlp/ios-new-localization-system

« back to all changes in this revision

Viewing changes to Pods/InAppSettingsKit/InAppSettingsKit/Controllers/IASKMultipleValueSelection.h

  • Committer: Daniel Borges
  • Date: 2016-07-03 18:15:32 UTC
  • mfrom: (53.1.3 delete-pods)
  • Revision ID: daniel_borges_93@yahoo.com.br-20160703181532-7n8op16rcl15em5o
DeleteĀ PodsĀ folder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#import <UIKit/UIKit.h>
2
 
 
3
 
@class IASKSpecifier;
4
 
@protocol IASKSettingsStore;
5
 
 
6
 
/// Encapsulates the selection among multiple values.
7
 
/// This is used for PSMultiValueSpecifier and PSRadioGroupSpecifier
8
 
@interface IASKMultipleValueSelection : NSObject
9
 
 
10
 
@property (nonatomic, assign) UITableView *tableView;
11
 
@property (nonatomic, retain) IASKSpecifier *specifier;
12
 
@property (nonatomic, assign) NSInteger section;
13
 
@property (nonatomic, copy, readonly) NSIndexPath *checkedItem;
14
 
@property (nonatomic, strong) id<IASKSettingsStore> settingsStore;
15
 
 
16
 
- (void)selectRowAtIndexPath:(NSIndexPath *)indexPath;
17
 
- (void)updateSelectionInCell:(UITableViewCell *)cell indexPath:(NSIndexPath *)indexPath;
18
 
 
19
 
@end