Filter
Exclude
Time range
-
Near
29 Aug 2024
Is there a good resource to learn about URLComponents/URLQueryItem?
2
4
333
31 Mar 2024
URLComponents作らなくてもURLにURLQueryItem付けられるの最近知った developer.apple.com/document…

1
1
12
2,163
25 Mar 2024
でも結局HTMLにレンダリングするときに2重にエスケープされるということはレンダラーにはエスケープするコードがすでにあるというわけだ。そこのコードがURLComponentsで作ったURLと異なるエスケープをするからリンクとして機能しないだけで。次はそこを見つけるところからだ。もう寝よう
2
214
25 Mar 2024
逆にurlの方は↓ここなんだよな。URLComponentsで作ったurlがエスケープされているのだという… github.com/apple/swift-docc/…

1
2
317
なるほど、URLComponents使っていきますか。
7
923
Replying to @Dimillian
So basically URLComponents URLRequest
3
805
記事を投稿しました! 【Swift】URLComponentsを使ったネットワークリクエスト on #Qiita qiita.com/imchino/items/615e…

3
55
URLComponentsはクエリアイテムをパーセントエンコードする。 便利なので必要なら私も使うようにしている。
💡 Swift tip: You can use `URLComponents` to avoid manually encoding your URL query string using `addingPercentEncoding`.
1
10
1,191
💡 Swift tip: You can use `URLComponents` to avoid manually encoding your URL query string using `addingPercentEncoding`.
15
113
14,234
15 Mar 2023
Replying to @the_uhooi @totokit4
=を完全に潰して良いなら CharacterSet.urlQueryAllowedから=を除外したものをaddingPercentEncodingに渡してあげればよさそうかな 一手間かけて良いならURLComponentsで加工するのが安全 qiita.com/417_72ki/items/47e…

2
85
Just a quick reminder that you can use URLComponents to build URLs with query components. 🌟 It is great because it automatically percent encodes any query item strings! 🔗 developer.apple.com/document… #iosdev #swiftlang
2
6
41
6,085
Learn how to deal with common URL scenarios avanderlee.com/swift/url-com… 🧩 Working with URLComponents 🤓 Smart extensions to make your life easier 💪🏻 Writing and ready query items #swiftlang #iosdev
1
7
31
Replying to @czw4rf
One of my first blog posts ever was on URLComponents! Well, NSURLComponents, because it was written for Objective-C, back in... 2014! 😆 masilotti.com/nsurlqueryitem…

2
22 Jul 2022
Replying to @czw4rf
Pretty sure I failed an interview once because I used string interpolation instead of saying I’d use URLComponents. I learned about them real quick after that. Lol
2
6
21 Jul 2022
Why am I just learning about Foundation's URLComponents, they make API calls a piece of cake😭
8
30
17 Jun 2022
So today I learnt a very fun new thing. If you use URLComponents in swift, you can pass parameters separately, outside the base url. I’m gonna be using this for parameter passing in my apis
7
Created a small developer tool called URL Components that breaks down URL into its constituent parts and creates a URLComponents code for the same. apps.apple.com/us/app/url-co… Available for Mac and iOS #DeveloperTools #IndieDev #iOSDev

5
9
44
TIL in Swift Foundation.URL port numbers can be negative, but not in URLComponents
2
4
10LGTM! | [Swift 5]URLからクエリパラメータを取得する方法:URLComponentsを使用 by @riscait bit.ly/3kjev20

2