Merge branch 'bugfix/nib_crash' into 'develop'

Fix mfloadimageView to swift crash

See merge request BPHV_MIPS/mvm_core_ui!12
This commit is contained in:
Suresh, Kamlesh 2019-03-22 12:31:02 -04:00
commit 7920f8f550
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ import UIKit
super.init(frame: .zero)
}
required public init?(coder aDecoder: NSCoder) {
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}

View File

@ -26,8 +26,8 @@
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
- (instancetype)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
if (self) {
[self setupView];
}