Post

Replies

Boosts

Views

Activity

Reply to " Closed account "
In my experience, I kept my Developer Program unpaid for years (not only 5 days), and when I bought the Developer Program with the same Apple ID, all the developer things seemed continuing (just that my apps were removed from App Store, but I could find them in the App Store Connect). i try to contact apple support through support form Have you used the Contact Us page shown below every page of the developer site? Apple Support is well known as slow responder, as you may know, but in my experiences, I could get responses in a week. Have you bought another Developer Program and already paid? If not yet, please try.
Oct ’21
Reply to Unable to update to Xcode 13.1 storage wise
I currently have 34.85 GB (12.61 GB purgeable) available. That's three times the final size of the new Xcode. Not sure how have you checked the final size of the new Xcode, but 34.85 GB is not enough. Extracting .xip consumes 30 GB or more disk space and you need to keep the original xip file (about 13 GB, 13.1) while extracting, so, 45 GB or more is needed. The first thing you can try is increasing the free space, safely by: Open (Xcode menu) Window > Devices and Simulators > Simulators, and remove unused simulator instances Open Apple menu > About This Mac > Storage > Manage... > Developer, and remove Xcode Caches and Device Supports You can find some unsafe ways to remove files used by Xcode on the web. Is there some way around this? If you have an external hard drive with enough space (50 GB or more, excluding purgeable), download Xcode.xip into the drive and expand it there, and move the expanded Xcode.app into the Application folder of your startup disk.
Oct ’21
Reply to Which platform is the easiest to get started with in app development
One thing you should know first is that there is no easy way to developing apps. Whether it is an App Store apps or just a hobby app. The second thing you need to do is clarifying what you want to do with your app. I guess you do not want to play with text-based Hit and Blow games even if it seems easier. What do you want to do with your app? All those said, I would recommend you to continue working with Swift Playgrounds. If you are not satisfied with “learn to code” series, you can find many other tutorial books for Swift Playgrounds. And in the near future (Apple says it's late this year), you can write an app for App Store using Swift Playgrounds.
Oct ’21
Reply to Mac App Store apps without sandbox enabled
Is it still possible? NO. 2.4.5 Apps distributed via the Mac App Store have some additional requirements to keep in mind: (i) They must be appropriately sandboxed... I see some apps use features that does not work when sandbox is enabled, to be specific, accessibility related. Some of those apps are quite new, so it is not about legacy apps. The requirement would not change whatever you guess some apps using features.
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’21
Reply to Axie infinity
Apple's developer site is not a place to exchange redeem code things of some specific app. Contact to the author of the app.
Oct ’21
Reply to TextEditor cells in SwiftUI Table
What is the proper way of defining that the row.text is a binding in this case? As far as I read the docs and watched the sample code, SwiftUI.Table does not give us a quick way to make some cell editable. One possible solution would be something like this: (Not sure, if this code would work as expected.) struct ContentView: View { @State var data = [ Thing(id: 1, text: "one"), Thing(id: 2, text: "two"), Thing(id: 3, text: "three"), ] var body: some View { VStack { Text("Hello, world!") .padding() Table(data) { TableColumn("ID") { row in Text(String(row.id)) } TableColumn("Text") { row in //`id` needs to keep the position in `data` TextEditor(text: $data[row.id-1].text) } } } } } at the end the Thing will also be some dynamic structure not known at compile time That sounds like you should better stay in the AppKit world a little more, until SwiftUI gives us more convenient ways to write some dynamic things.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’21
Reply to macOS Server on Monterey
Thoughts how to solve it? Wait till the released version of macOS Server for Monterey will be released. (Generally, macOS Server may be updated more than a few months later than the macOS updates. You should better not update your macOS immediately if macOS Server is required for your work.) Or else, you can try the beta version of the next macOS Server. (Visit the Downloads page.)
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’21
Reply to Deleted Table View Cell Copying Remaining Tableview Cell Instead of Disappearing
You know it's hard to reproduce something when external services such as Firebase are used. So, this is just an impression glancing your code, but why are you calling unneeded reloadData()? Generally, you have no need to call reloadData() when you properly call deleteRows(at:with:). Please try removing reloadData() in tableView(_:commit:forRowAt:). One more, you should better check the value of editingStyle in the method.
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’21