Merge branch 'feature/delegate_object' into 'develop'

change weak delegateObject to Strong, since delegate inside delegateObject are weak

See merge request BPHV_MIPS/mvm_core!15
This commit is contained in:
Pfeil, Scott Robert 2019-05-10 14:47:42 -04:00
commit 85b7b98f41

View File

@ -44,7 +44,7 @@
// The load delegate
@property (nullable, weak, nonatomic) NSObject <MVMCoreLoadDelegateProtocol,MVMCorePresentationDelegateProtocol,MVMCoreActionDelegateProtocol> *delegate __deprecated;
@property (nullable, weak, nonatomic) DelegateObject *delegateObject;
@property (nullable, strong, nonatomic) DelegateObject *delegateObject;
// The operation that is loading.
@property (nullable, weak, nonatomic) MVMCoreLoadRequestOperation *operation;