Hi,
Ever since upgrading to Version 26.0 beta 5 (17A5295f) Xcode constantly locks up with the Beach Ball of Death icon. I can't even work on any apps/projects.
Anyone else having issues?
Dan Uff
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
I have a toolbar and a share button on the left side. The button isn't showing up on the canvas, but does show when the app is run in the simulator or a device. Is this normal behavior or a bug? This is a test button so please forgive the print statement.
Here's the code:
{
ToolbarItem(placement: .bottomBar)
{
Button(action: {
print ("Button Pressed!")
}
){
Image(systemName: "square.and.arrow.up")
}
}
}
Hi,
I am looking for opinions on the best way to handle a problem I'm having.
My client wants his app to show a list of math tables, such as 1+1 = 2, 2+2 = 4, and so on. I have a list view with said tables in an array, which I manually have to input in. He wants the list to go from 1 to 20.
I'd assume that I would need some sort of for....next loop, but how would I show that in a list?
Thanks for any help you can give.
This is what I have so far:
import SwiftUI
import UIKit
struct ATables: View {
var tables = ["Temporary","1 + 1 = 2","2 + 2 = 4"]
var body: some View {
NavigationView {
List {
ForEach(self.tables, id: \.self) { show in
HStack {
Image(systemName: "arrow.right")
.resizable()
.frame(width: 30, height: 20, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
Text(show)
.font(.custom("Chalkboard", size: 50))
}
}
}.navigationBarTitle(Text("Addition Tables (1 - 20)"))
.navigationBarTitleDisplayMode(.inline)
}
}
struct ATables_Previews: PreviewProvider {
static var previews: some View {
ATables()
}
}
}
Hi,
I'm trying to make a small text editor. Everything works except I need the background a different color.
But the standard way to do it with 'ZStack' doesn't work? Any ideas?
Thanks!
ZStack {
Color.green
.ignoresSafeArea()
NavigationView {
TextEditor(text: $text)
.background(Color.clear)
.navigationTitle("Notepad Test!")
}
}
}
Hi,
I have several iOS apps in the App Store. I have been asked to provide a Mac app for some of them, which I am willing to do.
Should I add the Mac app to an existing iOS app (i.e. a new target) or make a separate app just for the Mac, even though the information inside the app would be the same?
Thanks,
Dan Uff
Hi,
I am writing this to WARN other developers about a problem that I have run into with Xcode 13.3 (13e113).
Ever since downloading this version, I have noticed that my apps have bloated in size. From 23mb to 55mb and above. After an investigation, I noticed that Xcode was duplicating project and other files. Such as [nameofproject] [nameofproject2], etc. Because of this, not only did my project get bloated, but when I try to delete some of the duplicate files (yes, I know what to delete and what NOT too) this would then allow Xcode to delete even MORE FILES each time I went into the project. There is nothing worse then going into a project that you've worked MONTHS on and seeing RED FILES inside the project (red files means not there).
So, I keep backups of all my apps. Restoring these backups cause the same problems.
This is a notice to all developers -> CHECK YOUR PROJECT FILES FROM THE FINDER so you don't experience this problem.
I would HOPE someone from Apple will see AND READ this and maybe even CONTACT ME so I can make DAMN sure this never happens again.
Thank you,
Dan Uff
Could someone help me find the example code for WeatherKit that is associated with the video? Thanks.
Hi,
Will the Apple Weather framework work on Mac using SwiftUI? The documentation doesn't say MacOS.
Thanks,
Dan Uff
Hi, I am receiving the above error after trying to upload it to the App Store.
I would know what to do IF Xcode would provide WHICH file is corrupt.
The error reads:
ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt.
Again, I would know what to do if I had more information about which file(s) to fix.
Could anyone FROM APPLE help me or give me a hint?
Thanks, Dan Uff
Hi,
I am creating an app that would be able to share information between iPhone, iPad, etc.
I created a new target and went to the Target Membership area and noticed the attachment instead of the list of files that the app can share between the current target and a new one. Is there another way to do it?
Thanks,
Dan Uff
Hi,
Is there anyway to see where an app is, like is it in the top 30, or 10? If not, that would be a nice add-on so we can really get an idea of if our app really stinks or not :-)
Thanks,
Dan Uff
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Tracking Transparency
Hi,
I’m running out of hard disk space on my Mac mini and am considering moving all of my projects to iCould.
But I need to know if anyone else has done this and if iCloud would be a viable option working with Xoode and if said idea would be able to keep up with any update(s) that I’d make to an app.
Thank you,
Dan Uff
Topic:
Community
SubTopic:
Apple Developers
I discovered a disk space issue with Xcode on my 1TB hard disk. Xcode doesn’t delete old or unused Simulators, causing them to mix and consume valuable space. Deleting them from the Window > Devices & Simulators menu didn’t work, so I used Disk Utility to find and delete them. However, they persisted.
To regain disk space, I completely removed Xcode and the Developer Folder. After reinstalling Xcode, I regained about 80% of my disk space. Despite unmounting the Simulators, they remained.
For those unable or unwilling to do this, the Mac App Store offers DevCleaner, a utility that removes old Xcode Cache and Simulators.
Thanks. I hope I've helped someone else.
Dan Uff
Hi,
I have created a game for all platforms (except VisionOS) and would like to release each version separately. Can I upload the iOS version without uploading the other versions?
Thanks,
Dan Uff
Hi,
I am receiving the above error after trying to upload it to the App Store.
I would know what to do IF Xcode would provide WHICH file is corrupt.
The error reads:
ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt.
Again, I would know what to do if I had more information about which file(s) to fix.
Could anyone FROM APPLE help me or give me a hint?
Thanks,
Dan Uff