Search results for

“show when run”

115,098 results found

Post

Replies

Boosts

Views

Activity

XCode 6.4 - Errors stopped showing in editor
I'm on XCode 6.4 (6E35b)Two days ago XCode stopped showing errors in the editor. Everytime I do a build, it says 'build succeeded' but when I try to run the app or my unit tests then it says build failed but it doesn't show the red exclamation points in the editor and I have to go into the logs view and hunt through the logs to find the compile errors. I trashed my version of XCode and re-installed through the AppStore, same behavior. I do have XCode 7 downloaded but I haven't run it in weeks. I'm on Yosemite 10.10.1.Has anyone else seen this behavior before? Seems weird. I've tried toggling some of my preferences related to showing errors as well to no avail.
2
0
356
Aug ’15
Reply to Improve SearchBar
It's not the search string and the array is complete and when parseJson() is run it shows all the cells. When I type E it shows less cells when I type n it shows even less cells, when I type f it shows even less cells but when I delete the f it shows 0 cells and when I delete n it again shows 0 cells so I have to delete everything to restart everything. This function shows the number of cells I have displayed. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { print(Number of cells:, cPlayerArr.count) return cPlayerArr.count }
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’20
Show Menu on longPressGesture
Seeing as contextMenu as been deprecated and they are Menus shown on a long press, how can that be achieved with SwiftUI? I haven't found a new initialiser for Menu yet to show on a long press or an isPresented argument.
2
0
1.5k
Oct ’20
Reply to iCloud storage trouble
Same here. I dont even have my ios9 device backing up to icloud. I had contacted Apple support not even thinking about the ios 9 device and on their end my storage shows correctly that I have 8gb free. However on two iphones both now running 8.4 it is incorrect shows only 200mb, on my mac runing 10.10.4 it is incorrect an ipad running 9 it is incorrect and logging into icloud it shows Im almost out of space. Apple support said its related to the ios9 device and had me open a ticket with developer support which I did.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Show `swipeActions` in `editMode`
I have a List in a NavigationStack and the list items have swipeActions struct ListItem: Identifiable { var id: String { return name } let name: String } struct ContentView: View { @Environment(.editMode) var editMode @State var listItems = [ ListItem(name: Cow), ListItem(name: Duck), ListItem(name: Chicken) ] var body: some View { NavigationStack { List(listItems) { listItem in NavigationLink { Text(listItem.name) } label: { Text(listItem.name) } .swipeActions(edge: .trailing) { Button(action: { }, label: { Text(Edit) }).tint(.blue) Button(role: .destructive, action: {}, label: { Text(Delete) }) } } .navigationTitle(Animals) .navigationBarItems(trailing: EditButton()) } } } For users who might have problems with the swipe gesture, I would like to have the Swipe Actions display when the list is in editMode. Is there a programmatic way to show the swipeActions? I have also tried using ForEach with an onDelete modifier. Then if you hit the edit button, it shows a circular button on the left fo
1
0
630
Jun ’24
Showing Windows In Code
HiI have window1 and window2 in the main storyboard and window3 in a different storyboard, and I added button1 and button2on wibdow1, what code to write in the buttons actions to show window2 and window3 ? I want to know by code nit by optiondragining way.Kindest Regards
1
0
467
Nov ’19
Reply to problem with .FileImporter in fisical divice
What happens when you run the app from Xcode on your iPad? Are you able to open the file? If you can, that narrows the problem down to TestFlight. I recommend running the app from Xcode on your iPad and set a breakpoint in your file importing code. If you step through the code line by line, Xcode's console should show error messages if there's a problem with opening the file. Show your file importing code. Without the code, people here will just be guessing about the cause of the problem.
Nov ’23
Reply to ARKitFaceExample compiling error
It runs fine on my iPhone 6s [of course it shows a screen that says the device is not supported, but it still compiles and runs without any problems.]And yes, it still doesn't run on any of the simulators I've tried, including iPhone X simulator.I assume this means it will run on iPhone X too when we get our hand on in 4 weeks 😍
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’17
Xcode 15.1 beta playground Output not showing
I am new in Xcode. When I try to practice Swift code to run the code . When I press run its show nothing. I search to solve it through YouTube. But I can't.
Replies
0
Boosts
0
Views
272
Activity
Nov ’23
XCode 6.4 - Errors stopped showing in editor
I'm on XCode 6.4 (6E35b)Two days ago XCode stopped showing errors in the editor. Everytime I do a build, it says 'build succeeded' but when I try to run the app or my unit tests then it says build failed but it doesn't show the red exclamation points in the editor and I have to go into the logs view and hunt through the logs to find the compile errors. I trashed my version of XCode and re-installed through the AppStore, same behavior. I do have XCode 7 downloaded but I haven't run it in weeks. I'm on Yosemite 10.10.1.Has anyone else seen this behavior before? Seems weird. I've tried toggling some of my preferences related to showing errors as well to no avail.
Replies
2
Boosts
0
Views
356
Activity
Aug ’15
Reply to Xcode Simulator m1 - can't pick images
I am having an issue regarding this when running our XCTest cases, where it will show an all white screen instead of the images for the image picker. It only happens when running our automation tests on an M1 and not Intel. We are using XCode 13.2.1.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to Improve SearchBar
It's not the search string and the array is complete and when parseJson() is run it shows all the cells. When I type E it shows less cells when I type n it shows even less cells, when I type f it shows even less cells but when I delete the f it shows 0 cells and when I delete n it again shows 0 cells so I have to delete everything to restart everything. This function shows the number of cells I have displayed. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { print(Number of cells:, cPlayerArr.count) return cPlayerArr.count }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’20
Show Menu on longPressGesture
Seeing as contextMenu as been deprecated and they are Menus shown on a long press, how can that be achieved with SwiftUI? I haven't found a new initialiser for Menu yet to show on a long press or an isPresented argument.
Replies
2
Boosts
0
Views
1.5k
Activity
Oct ’20
Reply to Xcode 11 Beta SwiftUI Canvas.. not showing?
I am running Xcode 11 on MacOS 10.15. The SwiftUI canvas does not show when I click the + button. Xcode is broken.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’19
Reply to "No Payment Method" when payment info is set
Confirmed the bug, and yes, your solution worked for me, I had to re-create my campaign from scratch and now it shows (Running) state.Thanks.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’16
Reply to error: invalid target, create a target using the 'target create' command
If you create a new user (System Preferences > Users & Groups), log in as that user, run Xcode there, and use it to create and run a new test app, do you still see the problem? No. Does not show the problem.
Replies
Boosts
Views
Activity
Jan ’22
Reply to iCloud storage trouble
Same here. I dont even have my ios9 device backing up to icloud. I had contacted Apple support not even thinking about the ios 9 device and on their end my storage shows correctly that I have 8gb free. However on two iphones both now running 8.4 it is incorrect shows only 200mb, on my mac runing 10.10.4 it is incorrect an ipad running 9 it is incorrect and logging into icloud it shows Im almost out of space. Apple support said its related to the ios9 device and had me open a ticket with developer support which I did.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
Show `swipeActions` in `editMode`
I have a List in a NavigationStack and the list items have swipeActions struct ListItem: Identifiable { var id: String { return name } let name: String } struct ContentView: View { @Environment(.editMode) var editMode @State var listItems = [ ListItem(name: Cow), ListItem(name: Duck), ListItem(name: Chicken) ] var body: some View { NavigationStack { List(listItems) { listItem in NavigationLink { Text(listItem.name) } label: { Text(listItem.name) } .swipeActions(edge: .trailing) { Button(action: { }, label: { Text(Edit) }).tint(.blue) Button(role: .destructive, action: {}, label: { Text(Delete) }) } } .navigationTitle(Animals) .navigationBarItems(trailing: EditButton()) } } } For users who might have problems with the swipe gesture, I would like to have the Swipe Actions display when the list is in editMode. Is there a programmatic way to show the swipeActions? I have also tried using ForEach with an onDelete modifier. Then if you hit the edit button, it shows a circular button on the left fo
Replies
1
Boosts
0
Views
630
Activity
Jun ’24
Showing Windows In Code
HiI have window1 and window2 in the main storyboard and window3 in a different storyboard, and I added button1 and button2on wibdow1, what code to write in the buttons actions to show window2 and window3 ? I want to know by code nit by optiondragining way.Kindest Regards
Replies
1
Boosts
0
Views
467
Activity
Nov ’19
Reply to problem with .FileImporter in fisical divice
What happens when you run the app from Xcode on your iPad? Are you able to open the file? If you can, that narrows the problem down to TestFlight. I recommend running the app from Xcode on your iPad and set a breakpoint in your file importing code. If you step through the code line by line, Xcode's console should show error messages if there's a problem with opening the file. Show your file importing code. Without the code, people here will just be guessing about the cause of the problem.
Replies
Boosts
Views
Activity
Nov ’23
Reply to ARKitFaceExample compiling error
It runs fine on my iPhone 6s [of course it shows a screen that says the device is not supported, but it still compiles and runs without any problems.]And yes, it still doesn't run on any of the simulators I've tried, including iPhone X simulator.I assume this means it will run on iPhone X too when we get our hand on in 4 weeks 😍
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’17
10.13 Will not show as a download
High Sierra will not show up as a download in the appstore. In preferences it shows that I am able to receive Beta Software packages.Any suggesitons?
Replies
9
Boosts
0
Views
1.1k
Activity
Jun ’17
my app can show image on simulator,but can not show them on my iPhone ,i have checked all things that may cause this problem that i know .but it is not working
my app can show image on simulator,but can not show them on my iPhone ,it is ok running on others' mac, i mean the same code same project. i have checked all things that may cause this problem that i know .but it is not working.
Replies
3
Boosts
0
Views
286
Activity
Jul ’16