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