Post

Replies

Boosts

Views

Activity

Reply to App Ownership Question
You should take ownership of your app. Use your Apple Developer account, and add your Developer as a member of your Team (with an appropriate role). (If the app already exists under another account, then it will need to be transferred.) Use your GitHub (or equivalent) source code repository, and add your Developer to that. So everything is hosted/sourced on an account that you control.
Sep ’21
Reply to Can't read 'data' object returned from URLRequest
Following on from my original answer... The json response looks quite complicated, so I made a very simple test for the decoding: struct Food: Decodable { let description: String } struct FDCResponse: Decodable { let foods: [Food] } You have: self.FDCResults = decodedResponse.FDCResults ...and I don't know the structure of your FDCResults, so I just: print("decodedResponse: \(decodedResponse)") // FDCResponse ...and I got: decodedResponse: FDCResponse(foods: [DataTest.Food(description: "Apples, fuji, with skin, raw"), DataTest.Food(description: "Apples, gala, with skin, raw"), DataTest.Food(description: "Apples, honeycrisp, with skin, raw"), DataTest.Food(description: "Apples, granny smith, with skin, raw"), DataTest.Food(description: "Apples, red delicious, with skin, raw")])
Topic: App & System Services SubTopic: General Tags:
Sep ’21
Reply to New App Identifier
Identifiers can be created automatically (e.g. from Xcode) or manually (on Apple Developer). The "IDENTIFIER" is the Bundle ID of the app (usually a reverse-domain name style string). Once an Identifier has been created (on Apple Developer), it's "IDENTIFIER" is fixed, and cannot be edited. You can only "Remove" it, or change it's "Description", or it's "Capabilities".
Sep ’21
Reply to XCode 13 Release
When Xcode 13 stable version will be available for public? I would expect this on Monday, when iOS 15 releases. I have upgraded my iPad to iOS 15 RC version and couldn't able to run my application from my Xcode 12.5.1 version to iOS 15 RC now. Correct. • Xcode 12.5.1 cannot be used with iOS 15 • You can use Xcode 13 RC, or wait for the publicly available Xcode 13. • "RC" should be functionally identical to the final Release version (but it is not unknown for there to be an RC2, with further changes).
Sep ’21
Reply to Prevent iPad installation
From Xcode, select the TARGET, then from the "General" page, look at the "Deployment Info" section: • Select the devices you want (iPhone, iPad, Mac) As far as I know, it is not possible to prevent an iPad installing an iPhone app in compatibility mode.
Topic: App & System Services SubTopic: Hardware Tags:
Sep ’21