mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 08:03:50 +02:00
Organize views by feature
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
Copyright 2016 OpenMarket Ltd
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
#import <MatrixKit/MatrixKit.h>
|
||||
|
||||
@class TableViewCellWithCheckBoxes;
|
||||
|
||||
/**
|
||||
`TableViewCellWithCheckBoxes` delegate.
|
||||
*/
|
||||
@protocol TableViewCellWithCheckBoxesDelegate <NSObject>
|
||||
|
||||
/**
|
||||
Tells the delegate that the user taps on a check box.
|
||||
|
||||
@param tableViewCellWithCheckBoxes the `TableViewCellWithCheckBoxes` instance.
|
||||
@param index the index of the concerned check box.
|
||||
*/
|
||||
- (void)tableViewCellWithCheckBoxes:(TableViewCellWithCheckBoxes *)tableViewCellWithCheckBoxes didTapOnCheckBoxAtIndex:(NSUInteger)index;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
'TableViewCellWithCheckBoxes' inherits 'MXKTableViewCell' class.
|
||||
It displays several options in a UITableViewCell. Each option has its own check box and its label.
|
||||
All option have the same width and they are horizontally aligned inside the main container.
|
||||
They are vertically centered.
|
||||
*/
|
||||
@interface TableViewCellWithCheckBoxes : MXKTableViewCell
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UIView *mainContainer;
|
||||
|
||||
/**
|
||||
The number of boxes
|
||||
*/
|
||||
@property (nonatomic) NSUInteger checkBoxesNumber;
|
||||
|
||||
/**
|
||||
The current array of checkBoxes
|
||||
*/
|
||||
@property (nonatomic, readonly) NSArray<UIImageView*> *checkBoxes;
|
||||
|
||||
/**
|
||||
The current array of labels
|
||||
*/
|
||||
@property (nonatomic, readonly) NSArray<UILabel*> *labels;
|
||||
|
||||
/**
|
||||
Leading/Trailing constraints define here spacing to nearest neighbor (no relative to margin)
|
||||
*/
|
||||
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *mainContainerLeadingConstraint;
|
||||
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *mainContainerTrailingConstraint;
|
||||
|
||||
/**
|
||||
The delegate for the cell.
|
||||
*/
|
||||
@property (nonatomic, weak) id<TableViewCellWithCheckBoxesDelegate> delegate;
|
||||
|
||||
/**
|
||||
Default is NO. Controls whether multiple check boxes can be selected simultaneously
|
||||
*/
|
||||
@property (nonatomic) BOOL allowsMultipleSelection;
|
||||
|
||||
/**
|
||||
Select or unselect a check box.
|
||||
If multiple selection is not allowed, this method unselect the current selected box in case of a new selection.
|
||||
|
||||
@param isSelected the new value of the check box.
|
||||
@param index the index of the check box.
|
||||
*/
|
||||
- (void)setCheckBoxValue:(BOOL)isSelected atIndex:(NSUInteger)index;
|
||||
|
||||
/**
|
||||
Get the current state of a check box
|
||||
*/
|
||||
- (BOOL)checkBoxValueAtIndex:(NSUInteger)index;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user