Need help with NSString that returns (null)
- by Guy Dor
Hi,
I have a problem with my string that returns (null)
Here's the MainViewController:
NSString *leftWebViewUrl;
MainViewController *mainViewController;
@property (nonatomic, retain) NSString *leftWebViewUrl;
@property (nonatomic, retain) MainViewController *mainViewController;
leftWebViewUrl = [NSString stringWithString:leftWebView.request.URL.absoluteString];
leftSharingViewController.leftWebViewUrl = leftWebViewUrl;
Here's the leftSharingViewController (just the NSString declaration)
NSString *leftWebViewUrl;
@property (nonatomic, retain) NSString *leftWebViewUrl;
From some reason I get (null)
Thanks