Make an NSURL with an encoded plus (+)

前端 未结 7 1179
灰色年华
灰色年华 2021-02-14 01:39

I need to pass a timestamp with a timezone offset in a GET request, e.g.,

2009-05-04T11:22:00+01:00

This looks like a two arguments

7条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-14 01:58

    Use NSString's stringByAddingPercentEscapesUsingEncoding: method on the text you want to include as an argument.

    As its name implies, the method will convert return an auto-released string containing an url-safe version of the receiver.

提交回复
热议问题