Merge branch 'feature/core_object_swift' into 'develop'

add to default config

### Summary
default configuration of core object in core ui object

Co-authored-by: Scott Pfeil <Scott.Pfeil3@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1004
This commit is contained in:
Bruce, Matt R 2023-10-04 21:26:26 +00:00
commit 112bc33b84

View File

@ -19,7 +19,12 @@ public class CoreUIObject: NSObject {
public var topNotificationHandler: NotificationHandler?
public func defaultInitialSetup() {
MVMCoreObject.sharedInstance()?.defaultInitialSetup()
CoreUIModelMapping.registerObjects()
MVMCoreObject.sharedInstance()?.session = MVMCoreUISession()
MVMCoreObject.sharedInstance()?.actionHandler = MVMCoreUIActionHandler()
MVMCoreObject.sharedInstance()?.viewControllerMapping = MVMCoreUIViewControllerMappingObject()
MVMCoreObject.sharedInstance()?.loggingDelegate = MVMCoreUILoggingHandler()
alertHandler = AlertHandler()
}
}