Hi,
I have an existing iPhone/iPad app that I'm considering for Vision Pro. It's an informational app that shares info. with the watch.
What would be better:
To add a target for the vision pro.
Make a separate app so I can use all of the VP's features.
What are YOU doing to support the Vision Pro?
Thanks,
Dan
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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
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,
This problem had gone away with the previous version, but its back with 16.3.
When I first go into Xcode, it normally shows me a list of previous projects. This seems to work some of the time, and not others. When it doesn't, I Quit Xcode, go back in, then the list appears again.
I also noticed each time I quit Xcode, I get the "beach ball icon" for 5-7 seconds and then it exits most of the time. When it doesn't, I have to issue a killall Xcode in the Terminal.
I have a brand new Mac mini M4, 24GB RAM, 2 TB SSDD.
Is anyone else having these issues?
Thank you,
Dan Uff
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
I am making an app for myself that would show the current state of the Magic Keyboard battery state. Can someone give me an hint or examples of what to do? Thanks.
Hi,
I have been trying to change the default color of the NavigationView in the AppDelegate file and am unable to. Is it the code, or me? Using Xcode 13, Beta 1.
I got the code from hackingwithswift.com.
Here's the code:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Change Color of Navigation Bar:
let configuration = UINavigationBarAppearance()
configuration.configureWithOpaqueBackground()
configuration.backgroundColor = .systemPurple
return true
}
Thank you.
Dan Uff
Hi,
I have a list of items on the iPhone that I want to share on the watch. The list would be too big to have the actual file on the watch, so, what's the best way to share the list from the iPhone, and could someone give me a step by step on what to do or point me to a good document?
Thanks,
Dan Uff
Hi,
I added an Apple Watch target to an existing app using SwiftUI and Xcode 13 (13A233) and the Canvas shows the first view controller correctly (an Apple Watch) but when I add additional VCs, the canvas shows an iPhone. I recreated the additional VC making sure I had WatchOS selected and got the same thing.
Is anyone else having this problems with this? Any work arounds?
Thanks,
Dan Uff
Hi,
I have a small Apple Watch game that someone downloaded and liked a lot. That same individual asked me to make a Mac version of the same app, which I am willing to do.
Should I add the app to the current Apple Watch version, or make a stand alone version?
Thanks,
Dan Uff
Hi,
When I try to install a app that I want to test on an iPhone 13, I get the following error:
`
Showing All Messages
The file "/Users/danuff/Documents/CPS/iOS/iOS 15/Projects (Current)/iPhone : iPad/SwiftUI/General/DVP/DVP/DVP.entitlements" could not be opened. Verify the value of the CODE_SIGN_ENTITLEMENTS build setting for target "DVP" is correct and that the file exists on disk.
The app is not installed on the actual device, but it does work on the Simulator.'
It worked fine the other day.
Thanks,
Dan Uff
Hi all,
I've been working on an app for months and have recently came across the below problem.
I have a listView with a NavigationView in SwiftUI. When I go into the list, there is NO NavigationBar title or Buttons above it. When I start to scroll, it appears, and then disappears when I go to the top of the list. It has suddenly appeared without any rhyme or reason. I have seen this question asked before and a solution. I have tried it and it still is a problem.
Here's the code:
import Foundation
struct MainMenu: View {
@State private var mainOptions: Int? = 0
@State private var tag: Int = 0
var fSize = Int(20)
var body: some View {
NavigationView() {
List {
Section(header: Text("MAIN INFORMATION"))
{
NavigationLink(destination: Introduction(), tag:1, selection: $mainOptions) {
Image(systemName: "doc")
Text("Introduction")
.bold()
}
NavigationLink(destination: BeSafe(), tag:2, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Be Safe")
.bold()
}
NavigationLink(destination: MythsAndFacts(), tag:3, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Myths and Facts")
.bold()
}
NavigationLink(destination: CycleofViolence(), tag:4, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Cycle of Violence")
.bold()
}
NavigationLink(destination: Definition(), tag:5, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Definitions")
.bold()
}
NavigationLink(destination: PersonalSafetyPlan(), tag:6, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Personal Safety Plan")
.bold()
}
NavigationLink(destination: PPOs(), tag:7, selection: $mainOptions)
{
Image(systemName: "doc")
Text("PPOs")
.bold()
}
NavigationLink(destination: QuestionsOnLeaving(), tag:8, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Questions on Leaving")
.bold()
}
NavigationLink(destination: AbuseMenu(), tag:9, selection: $mainOptions)
{
Image(systemName: "doc")
Text("Information on Abuse")
.bold()
}
}
Section(header: Text("GET MORE INFORMATION"))
{
NavigationLink(destination: PhoneNumbers())
{
Image(systemName: "phone")
Text("Phone Numbers")
.bold()
}
NavigationLink(destination: Search())
{
Image(systemName: "safari")
Text("Search")
.bold()
}
}
Section(header: Text("TAKE NOTES"))
{
NavigationLink(destination: CPNoteLite())
{
Image(systemName: "note.text")
Text("CPNote Lite")
.bold()
}
NavigationLink(destination: CPNoteHelp())
{
Image(systemName: "questionmark")
Text("Help with CPNote Lite")
.bold()
}
}
Section(header: Text("FOR YOUR PROTECTION"))
{
NavigationLink(destination: HideInfo())
{
Image(systemName: "book.closed")
Text("Hide This App.")
.bold()
}
}
}
}.navigationTitle("Domestic Violence")
.navigationBarTitleDisplayMode(.inline)
.toolbar
{
ToolbarItem(placement: .bottomBar)
{
HStack {
Image(systemName: "c.circle")
.resizable()
.frame(width: 20, height: 20)
Text("2021 Connecting People Software")
.font(.custom("", size: 18))
}
}
}
.navigationBarItems(leading: NavigationLink(destination: About(),
label: {
Image(systemName: "info.circle")
.font(.custom("", size: 18))
}), trailing: NavigationLink(destination: Support(),
label: {
Image(systemName: "person.circle")
.font(.custom("", size: 18))
}))
}
}
struct MainMenu_Previews: PreviewProvider {
static var previews: some View {
MainMenu()
.previewInterfaceOrientation(.portrait)
}
}
Thank you,
Dan Uff
Hi,
In the past, I have tried to make an app that reads JSON from a remote server. I tried to use the same steps that are done with an iOS app, without success. I need to know if its even possible and where I would need to look to get this up and running.
Thanks,
Dan Uff