我想将NSString
包含符号操作的转换为NSURL
:
NSString *urls = @"https//graph.facebook.com/fql?q=select+actor_id,created_time+from+straem+where+created_time+>+2661222&access_token";
NSURL *realurl = [NSURL URLWithString:urls];
realurl 返回 -->> 无
主要问题是 created_time+>+2661222
,实际上是“ > ”符号操作。
NSURL
无法转换它。