ट्विट्स

आपण @yonaskolb यांना अवरोधित केले आहे

आपणास निश्चितपणे ही ट्विट्स पहायची आहेत? तसे केल्याने @yonaskolb यांना अनब्लॉक केले जाणार नाही.

  1. यांनी पुन्हा ट्विट केले
    २२ फेब्रु

    Two months ago a teased a Tool I was working on. And I've been perfecting it ever since. I've now arrived at a point where I feel like I need to share this with everyone 🙌 Introducing: 🖌 Graphaello (Alpha) Type-Safe GraphQL directly from SwiftUI 🤘

    हा थ्रेड दाखवा
    पूर्ववत् करा
  2. यांनी पुन्हा ट्विट केले
    २१ फेब्रु

    Alright, so here's what I've been working on... The results of the first ever iOS Developer Community Survey - . I hope you all find it interesting, and useful. Also, my eternal thanks if you were one of the respondents! 😍

    पूर्ववत् करा
  3. यांनी पुन्हा ट्विट केले
    २१ फेब्रु

    Wanna speed up link times of apps? Add -exported_symbols_list /dev/null to your linker flags. Roughly 8-15% savings.

    हा थ्रेड दाखवा
    पूर्ववत् करा
  4. यांनी पुन्हा ट्विट केले
    ११ फेब्रु

    The video from my talk is up now + full speaker notes! I have only seen a draft, so I hope it’s good 🤗 The part where I recompile the slideshow app live on stage is cut, but the stress in my voice leading up to it might still be noticeable 😅

    हा थ्रेड दाखवा
    पूर्ववत् करा
  5. यांनी पुन्हा ट्विट केले
    ११ फेब्रु

    Found a nice and beautiful way to declare properties to be associated with *nested* keys, without having to create intermediate structures!

    struct Contact: Decodable {
    var id: String
    @NestedKey
    var firstname: String
    @NestedKey
    var lastname: String
    @NestedKey
    var address: String

    enum CodingKeys: String, NestableCodingKey {
        case id
        case firstname = "nested/data/user/firstname"
        case lastname = "nested/data/user/lastname"
        case address = "nested/data/address"
    }
}
    let json = """
[
  {
    "id": "1",
    "nested": { "data": {
      "user": { "firstname": "Alice", "lastname": "Wonderland" },
      "address": "Through the looking glass"
    } }
  },
  {
    "id": "2",
    "nested": { "data": {
      "user": { "firstname": "Bob", "lastname": "Builder" },
      "address": "1, NewRoad"
    } }
  }
]
""".data(using: .utf8)!
    पूर्ववत् करा
  6. ७ फेब्रु

    Though I wish the generated access control type was the same as the type and not hard coded to internal

    हा थ्रेड दाखवा
    पूर्ववत् करा
  7. ७ फेब्रु

    To be clear this has been an option for classes for a while, but it didn't work with structs before

    हा थ्रेड दाखवा
    पूर्ववत् करा
  8. ७ फेब्रु

    Something I haven't seen mentioned about Xcode 11.4 is that you can now generate memberwise initializers for structs! 🎉 This is useful when initializing the struct from another module where the compiler synthesized initializer doesn't work

    हा थ्रेड दाखवा
    पूर्ववत् करा
  9. ६ फेब्रु

    XcodeGen 2.12 and 2.13 have recently been released with a whole host of new features and fixes including subproject target references, pre and post gen commands, and more. Thank you to all 12 contributors!

    पूर्ववत् करा
  10. यांनी पुन्हा ट्विट केले
    ५ फेब्रु

    Today I learned you can move a screenshot area by holding the spacebar. 🤯

    हा थ्रेड दाखवा
    पूर्ववत् करा
  11. यांनी पुन्हा ट्विट केले
    ६ फेब्रु

    This really is a game-changer! It's so much easier to test push notifications now. Simply add a test payload.json in your repository and execute it from the terminal 🚀

    पूर्ववत् करा
  12. यांनी पुन्हा ट्विट केले
    ४ फेब्रु

    You can diff values with Mirror if conform your type to Hashable! (🎩 ) I had no idea that you could cast to AnyHashable. 🤯 This is the first time I’ve been able to get Mirror do what I want.

    हा थ्रेड दाखवा
    पूर्ववत् करा
  13. यांनी पुन्हा ट्विट केले
    २७ जाने

    Introducing swift-doc: an (experimental) command-line utility for generating documentation for Swift projects. It's still early on, but I'm really excited about the infrastructure behind it, and how it can be used to develop Swift tooling. 🧵⬇️

    $ swift swift-doc path/to/SwiftProject/Sources \
			--output Documentation
$ tree Documentation
$ Documentation/
├── Home
├── (...)
├── _Footer.md
└── _Sidebar.md
    हा थ्रेड दाखवा
    पूर्ववत् करा
  14. यांनी पुन्हा ट्विट केले
    २७ जाने

    Just authored a proposal with and to make it easier to manage dependencies within scripts written in Swift. If you're writing or interested in writing scripts in Swift take a look, would appreciate the feedback :)

    हा थ्रेड दाखवा
    पूर्ववत् करा
  15. यांनी पुन्हा ट्विट केले
    १५ जाने

    I got a 2X speed boost in Euclid by replacing the guts of my Polygon struct with a class instead of having the properties inline. Never let anyone tell you Swift perf is intuitive (I ❤️ that Swift semantics mean this wasn't an API-breaking change though)

    हा थ्रेड दाखवा
    पूर्ववत् करा
  16. यांनी पुन्हा ट्विट केले
    ७ जाने

    Favorite MacOS utility apps: - Rocket for :emojis: everywhere🚀 - Vanilla for a neat menu bar - Caffeine to keep my laptop awake - Colorsnapper to pick colors What are yours?

    हा थ्रेड दाखवा
    पूर्ववत् करा
  17. यांनी पुन्हा ट्विट केले
    ६ जाने
    पूर्ववत् करा
  18. यांनी पुन्हा ट्विट केले
    १३ डिसें, २०१९

    The project generator in the demo is powered by XcodeGen. Thanks to for making it and sharing it.

    हा थ्रेड दाखवा
    पूर्ववत् करा
  19. यांनी पुन्हा ट्विट केले
    ७ डिसें, २०१९

    Interesting article about the performance implications of using AnyView in SwiftUI.

    पूर्ववत् करा
  20. यांनी पुन्हा ट्विट केले
    ३० नोव्हें, २०१९

    Number42 on Tour. Today we are meeting the creator of xcodegen and mint, in Sydney.

    पूर्ववत् करा

लोड करण्या करता काही वेळ लागू शकतो.

Twitter वरची क्षमता ओलांडली गेली आहे किंवा तात्पुरती अडचण अनुभवास येत आहे. पुन्हा प्रयत्न करा किंवा अधिक माहितीसाठी Twitter स्थिती येथे भेट द्या.

    आपण मला सुद्धा विचारू शकता

    ·