another.im-ios/Monal/shareSheet-iOS/MLSelectionController.h

22 lines
514 B
C
Raw Normal View History

2024-11-18 14:53:52 +00:00
//
// MLSelectionController.h
// Monal
//
// Created by Anurodh Pokharel on 10/26/18.
// Copyright © 2018 Monal.im. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef void(^selectionResult)(NSDictionary *);
@interface MLSelectionController : UITableViewController
@property (nonatomic, copy) selectionResult completion;
@property (nonatomic, strong) NSArray *options; // an Array of MlContact
@property (nonatomic, strong) NSDictionary *selection;
@end
NS_ASSUME_NONNULL_END