mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
19 lines
402 B
Objective-C
19 lines
402 B
Objective-C
//
|
|
// UICheckBoxTVTableViewController.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 29/09/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UICheckBoxTVTableViewController : UITableViewController
|
|
|
|
@property(nonatomic, readonly) NSMutableArray *selectedItems;
|
|
|
|
- (void)loadData;
|
|
- (void)accessoryForCell:(UITableViewCell *)cell atPath:(NSIndexPath *)indexPath;
|
|
- (void)removeSelection;
|
|
|
|
@end
|