Post

Replies

Boosts

Views

Activity

Reply to Apple Cut
Simple maths - check all of your Apple deposits and work backwards from there or just go to App Store Connect and use Apple Payments & Taxes service with a little patients required month by month because some thought using a fiscal year as date range to generate reports was not needed.
Mar ’22
Reply to How to use ForEach to increase number of rows in SwiftUI's Picker?
have a go at more documentation: ForEach(1..<31) conforms to the signature pattern for the Range type. A Range type is defined as an up to sequence and not an inclusive one. So when you provide ForEach(1...31), ClosedRange, there is no implementation to handle this signature. basically due to the fact arrays are zero based indices in C based type languages. https://developer.apple.com/documentation/swift/range
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’22
Reply to OpenVPNProvider
To use NETunnelProvider the following entitlements must exists com.apple.developer.networking.networkextension configured with one of the following options <key>com.apple.developer.networking.networkextension</key> <array> <string>app-proxy-provider</string> <string>content-filter-provider</string> <string>dns-proxy</string> <string>dns-settings</string> <string>packet-tunnel-provider</string> </array> https://developer.apple.com/documentation/networkextension/netunnelprovider
Topic: Programming Languages SubTopic: General Tags:
Mar ’22
Reply to How can I use custom image instead of the ImagePicker in SwiftUI?
You can probably use a TabView to created a pageable carousel: TabView { ForEach(datasource, id:\.self) { data in NavigationLink(tag: company.id, selection: $currentSelection) { // The view to navigate on image selection SomeCustomViewToDisplayMoreData(data: data) } label: { Image(data.image) // you can probably give the image view a material back ground with rounded corners } } } .tabViewStyle(.page(indexDisplayMode: .always))
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’22
Reply to SwiftUI Accessibility Focus
Did you try @FocusState https://developer.apple.com/documentation/swiftui/focusstate/
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Installing fonts systemwide in iOS & iPadOS
You can't hence your fonts are sandboxed to the app using them.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to My app gets rejected for being a Copycat
Google is a free for all. Apple has a bit more class to the quality of application allowed for submission.
Replies
Boosts
Views
Activity
Mar ’22
Reply to Apple Cut
Simple maths - check all of your Apple deposits and work backwards from there or just go to App Store Connect and use Apple Payments & Taxes service with a little patients required month by month because some thought using a fiscal year as date range to generate reports was not needed.
Replies
Boosts
Views
Activity
Mar ’22
Reply to Xcode 13.3 cycle in dependencies between targets
Google a programmatic cycle or cyclic dependency then see if the pattern exist in your code. https://stackoverflow.com/questions/47872419/resolve-circular-dependency-in-swift
Replies
Boosts
Views
Activity
Mar ’22
Reply to How to use ForEach to increase number of rows in SwiftUI's Picker?
have a go at more documentation: ForEach(1..<31) conforms to the signature pattern for the Range type. A Range type is defined as an up to sequence and not an inclusive one. So when you provide ForEach(1...31), ClosedRange, there is no implementation to handle this signature. basically due to the fact arrays are zero based indices in C based type languages. https://developer.apple.com/documentation/swift/range
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to About the "Account deletion within apps" requirement
The irony of the "Account deletion within apps" is Apple doesn't even offer account deletion via iCloud on iOS through settings, the web, appleid.apple.com absolutely no where because they know the disruption it will cause to their own services. It seems the only entity allowed to keep data is Apple. If there is then it is well hidden.
Replies
Boosts
Views
Activity
Mar ’22
Reply to How to use ForEach to increase number of rows in SwiftUI's Picker?
Read the documentation: works when used correctly ForEach(Array(stride(from: 1000, through: 20000, by: 1000)), id:\.self) { number in                 Text("\(number)").tag(number)             }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Communicate between iOS and macOS ?
See here: https://developer.apple.com/documentation/network and https://developer.apple.com/documentation/network/building_a_custom_peer-to-peer_protocol
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to OpenVPNProvider
To use NETunnelProvider the following entitlements must exists com.apple.developer.networking.networkextension configured with one of the following options <key>com.apple.developer.networking.networkextension</key> <array> <string>app-proxy-provider</string> <string>content-filter-provider</string> <string>dns-proxy</string> <string>dns-settings</string> <string>packet-tunnel-provider</string> </array> https://developer.apple.com/documentation/networkextension/netunnelprovider
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to List of Apps selected from Family Activity Picker from a parent/guardian device is empty
Did you add the capability to the project and did you request access to the entitlement from: https://developer.apple.com/contact/request/family-controls-distribution
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Series 3 Apple Watch won’t connect to my iPhone 13
Welcome to the Apple Developer Forums: Post your questions, exchange knowledge, and connect with fellow developers and Apple engineers on a variety of software development topics. For questions about using Apple hardware and services, visit Apple Support Communities
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to xcode 13.3 Documentation Can't Find Objects Like NSView...
Works for me Xcode 13.3 maxOS 12.3
Replies
Boosts
Views
Activity
Mar ’22
Reply to How can I use custom image instead of the ImagePicker in SwiftUI?
You can probably use a TabView to created a pageable carousel: TabView { ForEach(datasource, id:\.self) { data in NavigationLink(tag: company.id, selection: $currentSelection) { // The view to navigate on image selection SomeCustomViewToDisplayMoreData(data: data) } label: { Image(data.image) // you can probably give the image view a material back ground with rounded corners } } } .tabViewStyle(.page(indexDisplayMode: .always))
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to What do the different cases of the enumeration Data.Deallocator mean?
The method of deallocation based on the memory model.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’22