Search results for

“show when run”

115,095 results found

Post

Replies

Boosts

Views

Activity

Xcode Showing Build Failed
I have 2 c files in a group folder(created using Xcode), before that the individual c file in the folder was being built properly and output was shown but after adding a second file, it shows build failed I built the files using gcc in terminal and they are being built and the output is being shown so I suspect that this is a problem with running the file.
2
0
784
Feb ’24
Reply to Store Location from API into Array
This is the entire printed console when the code is ran: Thanks for showing the output, but the JSON, outermost structure is JSON object must start with { (opening brace). Seems a few lines are missing. Can you show really entire output? (UPDATE) Can you show really entire output? Sorry, but no thank you. Seems your Console Out contains outputs of two runs. The first 936 lines for the first run -- partial, and the latter for the second run -- entire. Found what's wrong -- there's no entry of type String for the key location in the response. Need some time to write a more detailed answer...
Topic: Programming Languages SubTopic: Swift Tags:
Jan ’21
How do I show my total rating?
How do I show my total rating? Is it possible to show the rating for all versions? I have over a thousand more 5star reviews than 1star, but after a recent update, I am at 3 stars. Is there a way to show total rating? As a user, I can't even see ratings and reviews for all versions. How do I make the rating reflect the number of 5star vs. 1star ratings? Thank you!
1
0
512
Sep ’17
UIBarButtonItems not showing
Long story short iOS10 left, right buttons, custom label working without issues, iOS11 none of the showing. I've read elsewhere that I need to add constraints for the buttons but that is not helping.self.connectionButton = [[UIButton alloc] initWithFrame:CGRectMake(0.0,0.0,74.0,29.0)]; [self.connectionButton.widthAnchor constraintEqualToConstant:74].active = YES; [self.connectionButton.heightAnchor constraintEqualToConstant:29].active = YES; self.connectionButton.backgroundColor = [UIColor yellowColor]; UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:self.connectionButton]; self.navigationItem.rightBarButtonItem = buttonItem;When I check the frame during run time it's correct (0,0,74,29). No button is shown in the bar though.XCode 9 beta 8, not working on either device nor simulator.
2
0
5.8k
Aug ’17
Reply to Missing code coverage with Xcode 10
I am seeing similar issues. Actually not only that, what I am noticing :1- Coverage number varies between multiple runs on XC 10 on the same binary. Like in first run it shows x% vs in another run it will show y% keeping the same code.2- Coverage number/Number of tests varies while running on 11.4 simulator and 12.0 simulator, both ran on XC 103- Number of tests also a little different like in some of my run it was 5507 tests vs in some runs it was 5506.XC 10 certainly came with lots of bugs.Please provide more input if you faced similar issues or found any workaround or solutions @stevebay hybridcatttstevebay
Nov ’18
Reply to Why do I keep getting this error
Could you show more of the crash log ? Did you notice where it crashes (call stack). If so, please show code. You have a segmentation fault. This may be due to a missing or corrupted IBOutlet connection. Log shows you are running MacOS 12.0.1. You'd better update to 12.3 at least.
May ’22
Show crashes in xcode
Hi,An other member of my team (Organization) published an archive on itunes connect, via Xcode (For TestFlight). After 2-3 days, he can show crashes on Xcode Organizer.But my xcode show anything. We have both itunes account with Admin role.Can I show the crashes without building archives ? Any maners to see crashes, or is just in the Xcode of the person who build ?ThanksEdit : I have an account for Member Center and another email for iTunes connect, should be the reason ?
1
0
419
Jun ’15
Reply to After Safari 9.0 Some Images Can't Be Seen
This also happens to the mail.app. Images stopped showing up. I am running Public Beta 6.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’15
Reply to App unable to simultaneously satisfy constraints between UIInputSetContainerView UITextEffectsView when Hotspot enabled
An incoming call causes this debug error to show up for me, too, running my app on an iPhone 5 running iOS 9.2.1. Seems like an iOS bug.
Replies
Boosts
Views
Activity
Feb ’16
Reply to Swift Playground's LiveView never runs
In case anyone runs into a similar issue, the solution for me was to restart Xcode with the playground altogether and it worked. I was trying to run the ant simulation but nothing was showing in the live view to the right.
Replies
Boosts
Views
Activity
Jan ’25
Xcode Showing Build Failed
I have 2 c files in a group folder(created using Xcode), before that the individual c file in the folder was being built properly and output was shown but after adding a second file, it shows build failed I built the files using gcc in terminal and they are being built and the output is being shown so I suspect that this is a problem with running the file.
Replies
2
Boosts
0
Views
784
Activity
Feb ’24
Reply to Store Location from API into Array
This is the entire printed console when the code is ran: Thanks for showing the output, but the JSON, outermost structure is JSON object must start with { (opening brace). Seems a few lines are missing. Can you show really entire output? (UPDATE) Can you show really entire output? Sorry, but no thank you. Seems your Console Out contains outputs of two runs. The first 936 lines for the first run -- partial, and the latter for the second run -- entire. Found what's wrong -- there's no entry of type String for the key location in the response. Need some time to write a more detailed answer...
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’21
How do I show my total rating?
How do I show my total rating? Is it possible to show the rating for all versions? I have over a thousand more 5star reviews than 1star, but after a recent update, I am at 3 stars. Is there a way to show total rating? As a user, I can't even see ratings and reviews for all versions. How do I make the rating reflect the number of 5star vs. 1star ratings? Thank you!
Replies
1
Boosts
0
Views
512
Activity
Sep ’17
UIBarButtonItems not showing
Long story short iOS10 left, right buttons, custom label working without issues, iOS11 none of the showing. I've read elsewhere that I need to add constraints for the buttons but that is not helping.self.connectionButton = [[UIButton alloc] initWithFrame:CGRectMake(0.0,0.0,74.0,29.0)]; [self.connectionButton.widthAnchor constraintEqualToConstant:74].active = YES; [self.connectionButton.heightAnchor constraintEqualToConstant:29].active = YES; self.connectionButton.backgroundColor = [UIColor yellowColor]; UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:self.connectionButton]; self.navigationItem.rightBarButtonItem = buttonItem;When I check the frame during run time it's correct (0,0,74,29). No button is shown in the bar though.XCode 9 beta 8, not working on either device nor simulator.
Replies
2
Boosts
0
Views
5.8k
Activity
Aug ’17
Reply to Missing code coverage with Xcode 10
I am seeing similar issues. Actually not only that, what I am noticing :1- Coverage number varies between multiple runs on XC 10 on the same binary. Like in first run it shows x% vs in another run it will show y% keeping the same code.2- Coverage number/Number of tests varies while running on 11.4 simulator and 12.0 simulator, both ran on XC 103- Number of tests also a little different like in some of my run it was 5507 tests vs in some runs it was 5506.XC 10 certainly came with lots of bugs.Please provide more input if you faced similar issues or found any workaround or solutions @stevebay hybridcatttstevebay
Replies
Boosts
Views
Activity
Nov ’18
Reply to Create UIViews based on character on JSON string
Can you be more specific: what does not work ?Does it compile ?What do you get at run ?Can you show the complete code ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’18
Reply to Why do I keep getting this error
Could you show more of the crash log ? Did you notice where it crashes (call stack). If so, please show code. You have a segmentation fault. This may be due to a missing or corrupted IBOutlet connection. Log shows you are running MacOS 12.0.1. You'd better update to 12.3 at least.
Replies
Boosts
Views
Activity
May ’22
NSLog not showing for UITests command line
I am trying to use the NSlog to verify some network calls from the main app and I am running the UITest as well. The issue is the log shows up in the console of the xcode when its run from there however its not showing up when I run it on the build server or even local machine using command line. Any ideas? I am using Xcode 7.2 with iOS 9.2 iPhone simulator
Replies
0
Boosts
0
Views
373
Activity
Dec ’15
Reply to Push notification in Background works fine when App runs by Xcode, but does not work when App runs by itself.
i have a very simular problem. my Apps are running fine when i start them from Xcode on a device, running the App from Testflight always causes a crash on the very first screen and the app stops running. In Xcode 11.2.1 my Capability Menue doesnt show Background Tasks.
Replies
Boosts
Views
Activity
Nov ’19
Reply to Could not download and install iOS 8.3 Simulator.
Is this safe to download?How do you intasll those packages? Just run and it will show up on Xcode?
Replies
Boosts
Views
Activity
Oct ’15
Show crashes in xcode
Hi,An other member of my team (Organization) published an archive on itunes connect, via Xcode (For TestFlight). After 2-3 days, he can show crashes on Xcode Organizer.But my xcode show anything. We have both itunes account with Admin role.Can I show the crashes without building archives ? Any maners to see crashes, or is just in the Xcode of the person who build ?ThanksEdit : I have an account for Member Center and another email for iTunes connect, should be the reason ?
Replies
1
Boosts
0
Views
419
Activity
Jun ’15
popup.js not showing for debugging iOS18
Running extension either on physical device or simulator. When trying to get the console log in Safari > Develop > Device > The main page shows but when launching the popup.js extension it doesn't show in order to see console. Works fine iOS 17* Not available iOS 18 FB14109978
Replies
1
Boosts
0
Views
704
Activity
Jun ’24