Merge branch 'feature/validate_on_appear' into 'develop'

validate_on_appear

See merge request BPHV_MIPS/mvm_core_ui!309
This commit is contained in:
Pfeil, Scott Robert 2020-03-18 12:05:40 -04:00
commit d530edd57f

View File

@ -484,7 +484,9 @@
- (void)newDataBuildAndUpdate { - (void)newDataBuildAndUpdate {
[MVMCoreDispatchUtility performBlockOnMainThread:^{ [MVMCoreDispatchUtility performBlockOnMainThread:^{
[self newDataBuildScreen]; [self newDataBuildScreen];
[self startValidation]; dispatch_async(dispatch_get_main_queue(), ^{
[self startValidation];
});
self.needToUpdateUI = YES; self.needToUpdateUI = YES;
[self.view setNeedsLayout]; [self.view setNeedsLayout];
}]; }];