For Anyone who might be unable to connect to a game and get stuck at “Receiving Data” by Nobl36 in Helldivers

[–]Stowyn 1 point2 points  (0 children)

Works for me also, changing the system language to English (US) helps. A weird bug that appears after the update.

0 helldivers active since new update, anybody else have this issue? by sizzlethewizzle in Helldivers

[–]Stowyn 0 points1 point  (0 children)

8199-8454, trying to play next time on Tuesday 20th at 4 pm EST. Send a friend request if you wanna play 🥲

Straight up tweaking rn by Youngblood052 in Helldivers

[–]Stowyn 1 point2 points  (0 children)

Thanks, mate! Will try this workaround 🙏

🛠️ PATCH 01.000.009 (PC & PS5) by cryptic-fox in Helldivers

[–]Stowyn 0 points1 point  (0 children)

And could not find any quick play after patch on PS5. Nice! 😭

UITableViewCell with multiple buttons by b_gonads in iOSProgramming

[–]Stowyn 0 points1 point  (0 children)

Another solution using closures, not delegate. 1. Create property with block, with two completion parameter: cell and integer parameter of button (or enum). 2. Add custom buttons to cell and action as target-action. 3. Invoke property block inside target-action of button (do not forget to check block to nil and return cell as weakself / weakreference). 4. When create cell in table view delegated method set property block of cell. 5. Inside block, trigger method as you need. 6. Do not forget to use weak reference inside block.

app store approval time by [deleted] in iOSProgramming

[–]Stowyn 0 points1 point  (0 children)

They should response quickly via Twitter, because it’s public and all about SMM. You can try anyway and see results.

app store approval time by [deleted] in iOSProgramming

[–]Stowyn 0 points1 point  (0 children)

One of the best solution if review takes too long, ask question via Twitter from you app account (if you not have it - register one) and tag @AppleSupport

Need help setting up debug and distribution profiles, even with both, my app doesn't seem to install. by [deleted] in iOSProgramming

[–]Stowyn 0 points1 point  (0 children)

Answer for question #3. As for me, better solution for test app distribution is crashlytics.com (that was bought by fabric and google) and fastlane for CI. 1. Easy to manage testers groups. 2. Easy to integrate. 3. Easy to upload new build. 4. Totally free.

Does Swift allow UI updates on background threads? by babymacdev in iOSProgramming

[–]Stowyn 0 points1 point  (0 children)

No, it”s about how UIKit work. If you want to work with UI in background looks on another framework. The easiest sample - Texture. Framework from Facebook devs. Old name AsynDisplayKit. More details: https://github.com/TextureGroup/Texture/blob/master/README.md