Post

Replies

Boosts

Views

Activity

Reply to iOS 16 beta + UIImage + UIButton + tintColor no longer works
I ended up going with a solution similar to the "pre iOS 13" method here: https://sarunw.com/posts/how-to-change-uiimage-color-in-swift/ extension UIImage {     func withColor(_ color: UIColor) -> UIImage? {         UIGraphicsBeginImageContextWithOptions(size, false, UIScreen.main.scale)         let drawRect = CGRect(x: 0, y: 0, width: size.width, height: size.height)         color.setFill()         UIRectFill(drawRect)         draw(in: drawRect, blendMode: .destinationIn, alpha: 1)         let tintedImage = UIGraphicsGetImageFromCurrentImageContext()         UIGraphicsEndImageContext()         return tintedImage     } }
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’22
Reply to Issue with testing App before release (Promo codes)
Hi Zsombor! I’m assuming you got this working by now since you asked so long ago. I’m currently running into a similar issue with a subscription that worked in test flight but I am getting an invalid product ID for the App Store version that is currently pending developer release. I’m curious If and how did you get it working before releasing the app live? Thanks!
Nov ’21
Reply to iOS 16 beta + UIImage + UIButton + tintColor no longer works
I ended up going with a solution similar to the "pre iOS 13" method here: https://sarunw.com/posts/how-to-change-uiimage-color-in-swift/ extension UIImage {     func withColor(_ color: UIColor) -> UIImage? {         UIGraphicsBeginImageContextWithOptions(size, false, UIScreen.main.scale)         let drawRect = CGRect(x: 0, y: 0, width: size.width, height: size.height)         color.setFill()         UIRectFill(drawRect)         draw(in: drawRect, blendMode: .destinationIn, alpha: 1)         let tintedImage = UIGraphicsGetImageFromCurrentImageContext()         UIGraphicsEndImageContext()         return tintedImage     } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to iOS 16 beta + UIImage + UIButton + tintColor no longer works
iOS 16 has shipped and this issue remains. Anyone else run into this?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Issue with testing App before release (Promo codes)
Hi Zsombor! I’m assuming you got this working by now since you asked so long ago. I’m currently running into a similar issue with a subscription that worked in test flight but I am getting an invalid product ID for the App Store version that is currently pending developer release. I’m curious If and how did you get it working before releasing the app live? Thanks!
Replies
Boosts
Views
Activity
Nov ’21
Reply to Auto Renew Subscription Server to Server Notifications are Missing in Sandbox Environment
Hi, did you ever figure out the answer to your questions? I'm curious about the same things. Thanks!
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to Does apple send notification for subscription expiry if auto-renew is turned off?
Hi - I'm wondering if found out the answer to this question?
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Sep ’21