did you set the delegate of your WTArchitectView in ObjC?
There should be somewhere a code like this:
// assuming self (mainly your UIViewController subclass) is conform to the WTArchitectViewDelegate protocol
self.architectView.delegate = self;
// after that you have to implement the following method in ObjC (in your UIViewController subclass if you assigned self as the delegate of the WTArchitectView)
- (void)urlWasInvoked:(NSString*)url
{
NSLog(@"url was invoked in ARchitectWorld: %@", url);
}
Best regards
Andi
O
Olivier Hugues
said
over 10 years ago
Hi,
Thank you Andreas. Of course "self.architectView.delegate = self; " do the job...
Olivier Hugues