Merge branch 'develop' of https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui into bugfix/view_init_model_method_fix
This commit is contained in:
commit
c3dcf3aaa8
@ -81,7 +81,9 @@ open class ItemDropdownEntryField: BaseDropdownEntryField {
|
||||
guard !pickerData.isEmpty else { return }
|
||||
|
||||
if setInitialValueInTextField, let pickerIndex = pickerView?.selectedRow(inComponent: 0) {
|
||||
observeDropdownChange?(text ?? "", pickerData[pickerIndex])
|
||||
text = pickerData[pickerIndex]
|
||||
itemDropdownEntryFieldModel?.selectedIndex = pickerIndex
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
- (BOOL)panelAvailable;
|
||||
|
||||
// Notified when it is appearing and disappearing. Called by the container.
|
||||
- (void)willOpenWithActionInformation:(nullable NSDictionary *)actionInformation;
|
||||
- (void)willOpenWithActionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
|
||||
- (void)willAppear:(BOOL)animated;
|
||||
- (void)didAppear:(BOOL)animated;
|
||||
- (void)willDisappear:(BOOL)animated;
|
||||
|
||||
@ -878,7 +878,7 @@ CGFloat const PanelAnimationDuration = 0.2;
|
||||
// Create bottom progress bar
|
||||
UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
|
||||
progressView.translatesAutoresizingMaskIntoConstraints = NO;
|
||||
progressView.tintColor = [UIColor mfTomatoRed];
|
||||
progressView.progressTintColor = [UIColor mfTomatoRed];
|
||||
[self.view addSubview:progressView];
|
||||
self.bottomProgressBar = progressView;
|
||||
[NSLayoutConstraint constraintWithItem:progressView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:mainView attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0].active = YES;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user