Post

Replies

Boosts

Views

Activity

Reply to Family Controls Request Form
Hi All, I also submitted a Family Controls Request Form but haven't heard back. I didn't get any case id when I submitted the request. Did you guys any case id or something to track the request? I'm currently developing an app that requires the main target and also the app extension to both use Family Controls. Does this mean I need to request forms for both app bundles separately or just the main app? I have this same question as well. Would appreciate any responses. Thanks,
Topic: Code Signing SubTopic: Entitlements Tags:
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 Error uploading apps on Xcode
This is the detailed error log "rejected distribution method because it doesn't support distributing archive"
Replies
Boosts
Views
Activity
Jun ’23
Reply to Unable to Add for Review - Xcode 15.0.1 - New apps and app updates must be built with the public (GM) versions of Xcode 11 or later
Exact same issue! Xcode Version 15.0.1 (15A507)
Replies
Boosts
Views
Activity
Nov ’23
Reply to Unable to Add for Review - Xcode 15.0.1 - New apps and app updates must be built with the public (GM) versions of Xcode 11 or later
Did anyone contact apple support?
Replies
Boosts
Views
Activity
Nov ’23
Reply to Unable to Add for Review - Xcode 15.0.1 - New apps and app updates must be built with the public (GM) versions of Xcode 11 or later
Works now! Thanks for fixing the issue!
Replies
Boosts
Views
Activity
Nov ’23
Reply to "Doesn't support the Family Controls capability." Even after getting accepted for family control
Hey, How long did it take for your request to get approved? Thanks,
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Family Controls Request Form
Hi All, I also submitted a Family Controls Request Form but haven't heard back. I didn't get any case id when I submitted the request. Did you guys any case id or something to track the request? I'm currently developing an app that requires the main target and also the app extension to both use Family Controls. Does this mean I need to request forms for both app bundles separately or just the main app? I have this same question as well. Would appreciate any responses. Thanks,
Topic: Code Signing SubTopic: Entitlements 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
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 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 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 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 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 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 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 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