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