Search results for

show when run

112,671 results found

Post

Replies

Boosts

Views

Activity

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
798
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