Search results for

“show when run”

115,079 results found

Post

Replies

Boosts

Views

Activity

Reply to TVTopShelfProvider not initialising
I've done all these things and my projects top shelf extension settings match the UIKitCatalog project's extension's settings as far as I can tell but I can only get the top shelf extension to show when I run from the extension's scheme. If I try to run from the tvOS app target's scheme, no top shelf extension shows up. This doesn't seem to be the case for the UIKitCatalog project. If I run from the UIKitCatalog target scheme, the top shelf extension shows up fine.Am I doing something wrong?
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’15
Reply to Issue with string
running on the terminal What do you mean ? Running on the Mac or running through Terminal utility ? With what you showed, it is impossible to get the print you get. Unless you wrote: var str: String? str = Test
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’22
Reply to sticker pack icon sizes
Very odd. It is indeed a bug! 1. When running on iPad Pro physical device or iPhone 6s Simulator, no icon showed up for me2. Then I decided to run it on the iPhone SE in Simulator and the icon shows up =)Anyway, hopefully they fix the bug before we have to submit.
Topic: App & System Services SubTopic: General Tags:
Jun ’16
Running in XCode different than running in Catalina?
I found a bug in XCode 11.6 and/or Catalina 10.15.6. I have a work around listed below, but wondered if this a general problem that should cause concern? In brief, I extended NSString class in Objective C with some personal convenience methods. Here is simplified header for MyStringAdditiotions showing just one convenience method: @interface NSString (MyStringAdditions) (NSString *)unquote; @end The one method is code I wrote a long time ago to remove white space and then if needed remove quotes on a string using such code as NSString *myString = tquoted text; NSString *uqString = [myString unquote]; to return just uqString = quoted text. The code itself is irrelevant and I am sure it is correct, but I got reports from users that it stopped working in Catalina. I was unable to reproduce their problems until I noticed that when I compile and run my app in XCode it works fine, but if I quit XCode and launch the app just compiled in XCode directly in Catalina, in runs differently and q
2
0
811
Oct ’20
UIButton not showing as selected
I am totally stumped.I have a UIButton in a UITableViewCell. I set the UIButton.isSelected property to true from the UITableViewController. The code to do that is in an @IBAction method that a UIViewController unwinds to that I use to edit the selected row on the table view. The code runs. I even step through it and I see that it runs. But the UIButton doesn't show as selected.Anyone know what's going on here?
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
2.2k
Sep ’17
Collection View not showing up
I'm currently making a tabbed app, and im having some troubles getting some things to show up during the test runs. How do you get the collection view that was made in a storyboard to show up when running the test on a device? everything is configured porperly in the storyboard, and other things show up in other tabs, like the navigation bars and such, but for some reason, i can't get the collection view to appear
23
0
14k
Jun ’19
Reply to Can't Provision A Device
you said selected it as a preview device - what do you mean here? It sounds like you selected your model of phone for the simulator. In the middle top of the Xcode window, it shows your target name a run destination. By default, that run destination for an iOS app is a simulator. Plug in your phone. If it doesn't appear in the popup menu as a run destination, choose Manage run destinations... from that menu. It should show up as discovered in the list on the left of the Run Destinations window. The first time you pair the phone with Xcode takes quite a while (several minutes for me).
Dec ’25
Reply to TVTopShelfProvider not initialising
I've done all these things and my projects top shelf extension settings match the UIKitCatalog project's extension's settings as far as I can tell but I can only get the top shelf extension to show when I run from the extension's scheme. If I try to run from the tvOS app target's scheme, no top shelf extension shows up. This doesn't seem to be the case for the UIKitCatalog project. If I run from the UIKitCatalog target scheme, the top shelf extension shows up fine.Am I doing something wrong?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’15
Reply to Issue with string
running on the terminal What do you mean ? Running on the Mac or running through Terminal utility ? With what you showed, it is impossible to get the print you get. Unless you wrote: var str: String? str = Test
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to sticker pack icon sizes
Very odd. It is indeed a bug! 1. When running on iPad Pro physical device or iPhone 6s Simulator, no icon showed up for me2. Then I decided to run it on the iPhone SE in Simulator and the icon shows up =)Anyway, hopefully they fix the bug before we have to submit.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’16
Reply to SwiftUI App crash after keyboard show
@OOPer, this case like my video. open app - click show second view - click change Change state - focus to ple TextField - show keyboard and crash. my code in first post and you can run it. I run with xcode 12.4 and ios 14.4
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Possible to Debug both Watch and iPhone simultaneously?
I am able to be running both in one simulator target run. When you run the WatchKit App target it shows me both a Watch screen with the Watch app running, then there is also an iPhone simulator screen running, and if I click on the icon for my app it will also start running. I think that is what you are looking for.Mark
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
How do I show an image…
How do I show an image in a UIAlert view?
Replies
0
Boosts
0
Views
215
Activity
Apr ’16
Reply to ForEach - Deleting last index causes Index out of bounds error
Can you show a complete code? (It can be simplified, but ready to run.)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’21
Running in XCode different than running in Catalina?
I found a bug in XCode 11.6 and/or Catalina 10.15.6. I have a work around listed below, but wondered if this a general problem that should cause concern? In brief, I extended NSString class in Objective C with some personal convenience methods. Here is simplified header for MyStringAdditiotions showing just one convenience method: @interface NSString (MyStringAdditions) (NSString *)unquote; @end The one method is code I wrote a long time ago to remove white space and then if needed remove quotes on a string using such code as NSString *myString = tquoted text; NSString *uqString = [myString unquote]; to return just uqString = quoted text. The code itself is irrelevant and I am sure it is correct, but I got reports from users that it stopped working in Catalina. I was unable to reproduce their problems until I noticed that when I compile and run my app in XCode it works fine, but if I quit XCode and launch the app just compiled in XCode directly in Catalina, in runs differently and q
Replies
2
Boosts
0
Views
811
Activity
Oct ’20
Reply to Is it possible to include a second app icon to be used on macOS versions prior to 11.0 Big Sur?
No. You can change your DockTile dynamically, while the app is running. So you could ship a regular icon, but show a rectangle version while running on Big Sur.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’20
UIButton not showing as selected
I am totally stumped.I have a UIButton in a UITableViewCell. I set the UIButton.isSelected property to true from the UITableViewController. The code to do that is in an @IBAction method that a UIViewController unwinds to that I use to edit the selected row on the table view. The code runs. I even step through it and I see that it runs. But the UIButton doesn't show as selected.Anyone know what's going on here?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
2.2k
Activity
Sep ’17
Collection View not showing up
I'm currently making a tabbed app, and im having some troubles getting some things to show up during the test runs. How do you get the collection view that was made in a storyboard to show up when running the test on a device? everything is configured porperly in the storyboard, and other things show up in other tabs, like the navigation bars and such, but for some reason, i can't get the collection view to appear
Replies
23
Boosts
0
Views
14k
Activity
Jun ’19
Reply to Xcode does not see devices although finder does see them
Is it not showing them in the run destinations list or is it not showing them in the Devices & Simulators window. The run destinations list will filter out devices that are not relevant to the chosen scheme. If you don't see it in the Devices & SImulators window, can you check xcrun devicectl list devices? Is it there?
Replies
Boosts
Views
Activity
Sep ’24
Changes not showing at runtime
I am a beginner and I´m following a course.They use a project where the labels an so on where already set.I wanted to make some changes but when I run the app they doesn't show.
Replies
4
Boosts
0
Views
1.7k
Activity
Jul ’19
Reply to Can't Provision A Device
you said selected it as a preview device - what do you mean here? It sounds like you selected your model of phone for the simulator. In the middle top of the Xcode window, it shows your target name a run destination. By default, that run destination for an iOS app is a simulator. Plug in your phone. If it doesn't appear in the popup menu as a run destination, choose Manage run destinations... from that menu. It should show up as discovered in the list on the left of the Run Destinations window. The first time you pair the phone with Xcode takes quite a while (several minutes for me).
Replies
Boosts
Views
Activity
Dec ’25
playground's preview shows blank screen instead of showing Navigation link button
i have a simple code running on Xcode 15.2 and is showing blank in the liveView I am expecting to see Hello button in default blue , which navigates me to empty screen when tapped can someone helpe me why preview is not rendering properly? thank you so much
Replies
2
Boosts
0
Views
791
Activity
Jan ’24