Hey Guys!
I am new using fuse and I really wanted to see a preview on my iPhone. However, once in Xcode I get an error…
@implementation UnsafeUnoObject *// The error message (Method definition for "weakUnoObjectWithoutUnoObject: not found – Xcode
Description: Holds a naked pointer to a Uno object.
Declared In uObjC.UnoObject.h *//
@synthesize unoObject = _unoObject;
-
(instancetype)unsafeUnoObjectWithUnoObject:(uObject_)object { if (object == NULL) {_
_```uno
return nil;} return \[\[UnsafeUnoObject alloc\] initWithUnoObject: object\]; }_
-
(id)initWithUnoObject:(uObject )object { self = [super init]; if (self) {
_unoObject = object;
} return self; }
-
(id)init { return [self initWithUnoObject: NULL]; }
-
(instancetype)copyWithZone:(NSZone )zone { UnsafeUnoObject newRef = [[[self class] allocWithZone:zone] init]; newRef->_unoObject = _unoObject; return newRef; } @end