I have a this code :
NSString *url = [NSString stringWithFormat:@"tt://classObj?title=%@", obl.title];
TTTableImageItem *cell = [TTTableImageItem
itemWithText:obl.title
imageURL:obl.thumbURL
URL:url];
If my obl.title contains special characters like é à ç ô or a simple space, it’s not correctly mapped to my selector :
- (id)initWithFailDetails:(NSString *)title query:(NSDictionary*)query
Is there any way to pass parameters containing these type of characters? By escaping them of whatever solution it may exists?
Thanks.
use
base64encoding, (from memory url escaping won’t work) ORdo not use URLs to pass such parameters but use instead
TTURLAction -applyQuery+- (id)initWithNavigatorURL:(NSURL*)URL query:(NSDictionary*)query