Post

Replies

Boosts

Views

Activity

Reply to Scary email from Google Firebase (Client access to your Cloud Firestore database expiring in 4 day(s))
Check the security rules of your project. If you are using the default security rules that are created by firebase when you start your project, that might be expiring. You can either modify the expiration date in the rule ( Not recommended) or create some basic security rules like match /{document=**} { allow read, write: if request.auth != null; }
Apr ’24
Reply to Convert View to Image for Share
You can convert view to image with this function func convertViewToImage( ) -> UIImage { let view = UIHostingController(rootView: AnyView(self.body)) let size = view.view.bounds.size view.view.frame = CGRect(origin: .zero, size: size) let renderer = UIGraphicsImageRenderer(size: size) let image = renderer.image { context in view.view.layer.render(in: context.cgContext) } return image }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Apr ’24
Reply to Why is Apple so slow at responding and reviewing
Same here. I submitted my app review for a minor update and it was waiting for review for 5 days with no movement. Then I removed it from the queue and submitted again, it's now waiting for review from 2 days. I hope Apple review team improves the review times.
Replies
Boosts
Views
Activity
6d
Reply to Build stuck in “Waiting for Review” for weeks (resubmission also waiting) - anyone seeing this recently?
I have also noticed increase in review times.
Replies
Boosts
Views
Activity
1w
Reply to No data in sales and trends past 4am
No data after July 9th for me as well.
Replies
Boosts
Views
Activity
Jul ’24
Reply to TextEditor Issue with Long Text Input
I had the issue in the past and I just fixed it by adding some 10 trailing spaces in the end. Not sure if anyone has a better fix for this.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Sales and Trends section is down
I am facing same issue as well from last 2 days.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Scary email from Google Firebase (Client access to your Cloud Firestore database expiring in 4 day(s))
Check the security rules of your project. If you are using the default security rules that are created by firebase when you start your project, that might be expiring. You can either modify the expiration date in the rule ( Not recommended) or create some basic security rules like match /{document=**} { allow read, write: if request.auth != null; }
Replies
Boosts
Views
Activity
Apr ’24
Reply to HealthKit Background execution
I figured out the issue. While updates from health data are immediate in sandbox, you receive updates at hourly rate in production.
Replies
Boosts
Views
Activity
Apr ’24
Reply to Family Controls Request Form
It is now resolved. I got the approval in 3 weeks.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Custom Offer codes work only via Link, but manually - code invalid
It generally takes a few hours before custom codes become active. how long ago did you generate them?
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to What class or extension is utilized to present suggested application names for insecure WiFi networks in iOS?
you can use NEHotspotNetwork and then check if network has a security code or not.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Convert View to Image for Share
You can convert view to image with this function func convertViewToImage( ) -> UIImage { let view = UIHostingController(rootView: AnyView(self.body)) let size = view.view.bounds.size view.view.frame = CGRect(origin: .zero, size: size) let renderer = UIGraphicsImageRenderer(size: size) let image = renderer.image { context in view.view.layer.render(in: context.cgContext) } return image }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to iOS 17.4 broke something with app limits?
Since you have an app related for Family controls, can you please tell how much time did it take you to get approval for Family control entitlement? Would appreciate if you can respond to https://developer.apple.com/forums/thread/749589
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to VideoPlayer SwiftUI change background color
You can probably overlay a ZStack with a Color view behind the VideoPlayer. Something like : var body: some View { ZStack { backgroundColor .edgesIgnoringSafeArea(.all) VideoPlayer(player: queuePlayer) .disabled(true) .scaledToFit() } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to URL.checkResourceIsReachable() throws error if file is on FTP server and name contains special characters
Have you tried encoding the file name and creating url from it? something like let urlEncoded = value.addingPercentEncoding(withAllowedCharacters: .alphanumerics) let url = "http://www.myftpserver.com/?name=\(urlEncoded!)"
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to App Store Connect now showing "Prepare for submission" Apps
It was a temporary issue and was resolved on it's own
Replies
Boosts
Views
Activity
Apr ’24