Search results for

“show when run”

117,521 results found

Post

Replies

Boosts

Views

Activity

SourceMaps do not show properly
I created a new Vue.js project with the latest vue-cli. After that I served that template project through webpack. Without any modifications, the source maps to the two components (App.vue and HelloWorld.vue) appear fine in Chrome and Firefox. They are located at webpack:///HelloWorld.vue?140d webpack:///App.vue?234e These source maps show up fine in Chrome and Firefox at their respective position, but are missing in Safari. Safari for some reason only shows files that are in some subfolder under webpack://. The source maps in these subfolders are available but they are next to useless, since they are not the original source. Those exist in the root. For example, webpack:///./src/components/HelloWorld.vue?f177 does show up.
0
0
1.1k
Jun ’20
Scrollbars not showing consistently.
I created a pop up div, that has a scrollable area in it. When I open the pop-up sometimes the scroll bar shows when scrolling, and other times, the scroll bar doesnt show once ive oponed a closed it.When the scroll bar isnt showing, the area is still scrollable, just you cant see the scroll bar.Ive used all types of different overflow options, but nothing seems to help.The reason why I cant force the scroll bar is because sometimes the content area with the words doesnt need a scroll bar because its not needed and in other places the pop-up has more content thus needs a scrollable area.
0
0
1.1k
Feb ’16
Reply to NSMenu call to factory method popUpContextMenu:withEvent:forView: results in __NSCFBoolean length unrecognized selector sent to instance
Does your app provide a Cocoa Service? If so, show the NSServices key from your Info.plist.This may be an issue of messaging a zombie. Try running reproducing the issue when running your app under the Zombies template.Even if it's not a zombie, Instruments should be able to show you the allocation history of the address of the __NSCFBoolean instance which is being incorrectly sent a -length message. That may help you figure out why there's an __NSCFBoolean instance where AppKit is expecting an object which responds to -length (such as an NSString instance).
Topic: UI Frameworks SubTopic: AppKit Tags:
Jan ’17
Reply to Is macOS Big Sur really macOS 10.16 under the hood not macOS 11
I hope you can give a more clear answer. Right now, the initial Big Sur developer release shows two different version numbers: 1) In About, it shows 11.0 2) In software, or in the Terminal, it shows as 10.16. For example, in the Terminal, if you run swvers -productVersion, you get 10.16. In a future Big Sur developer release, will swvers -productVersion return 11.0?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’20
XCode 7.3, show nothing in "window>devices>show provision profiles"
I have two devices, one is iPhone 5, the other is iPad 3(new iPad),both are iOS 9.2.1.Before someday (seems xcode update or what),XCode Device windowstill shows provision profiles, but now they won't show it at all.Though the app deployment and test is working fine,I don't know what happed, or this means any bugs?
1
0
693
Mar ’16
GPU Frame Capture shows wrong times
I'm using a single Compute Command Encoder to execute 5 kernel functions.My aim is to measure the execution time of each kernel function.However, when I try to profile the application via GPU Frame Capture, Xcode shows clearly wrong times – the sum of execution times of all 5 kernel functions is always 100µs (every time I profile the app). I've also tried to execute just one kernel function, but according to Xcode, running just one kernel function takes the same 100µs as if I was running 5 kernels.Please take a look at the following 2 images: i.imgur.com/p8F59hp.png (running 5 kernels)andi.imgur.com/i8OEKEQ.png (running 1 kernel).My comment: Based on the fact that the executions times always sum up to 100, I'd say they represent percentages if they weren't displayed with the units (nanoseconds and microseconds). I've also tried switching between showing percentages and time, but I've been unable to see the actual durations.Whan can I do to see the actual (
1
0
668
Sep ’16
LaunchScreen does not show on device
For my new app I'm trying to do things the right or at least new way, so I am using this LaunchScreen.storyboard for my splash screen. It was working fine, but now has suddenly stopped. It doesn't display on the device -- it works on the simulator. It's not just a case of the UI image not showing because the launch screen shows black, and my launch viewController background is white. Any ideas why this would stop working on the device?ThanksBob
1
0
3.2k
Aug ’17
MKMapView Legal label shows as <unlocalized>
I've added an MKMapView as a subview on one of my viewcontrollers. My app supports 6 languages. The map works alright in terms of showing directions. But the Legal text on the map (bottom left) shows as <unlocalized> instead of having a text saying Legal in whatever language is selected (or even English).How do I fix this? Thanks.
Replies
3
Boosts
0
Views
891
Activity
Jul ’19
SourceMaps do not show properly
I created a new Vue.js project with the latest vue-cli. After that I served that template project through webpack. Without any modifications, the source maps to the two components (App.vue and HelloWorld.vue) appear fine in Chrome and Firefox. They are located at webpack:///HelloWorld.vue?140d webpack:///App.vue?234e These source maps show up fine in Chrome and Firefox at their respective position, but are missing in Safari. Safari for some reason only shows files that are in some subfolder under webpack://. The source maps in these subfolders are available but they are next to useless, since they are not the original source. Those exist in the root. For example, webpack:///./src/components/HelloWorld.vue?f177 does show up.
Replies
0
Boosts
0
Views
1.1k
Activity
Jun ’20
Scrollbars not showing consistently.
I created a pop up div, that has a scrollable area in it. When I open the pop-up sometimes the scroll bar shows when scrolling, and other times, the scroll bar doesnt show once ive oponed a closed it.When the scroll bar isnt showing, the area is still scrollable, just you cant see the scroll bar.Ive used all types of different overflow options, but nothing seems to help.The reason why I cant force the scroll bar is because sometimes the content area with the words doesnt need a scroll bar because its not needed and in other places the pop-up has more content thus needs a scrollable area.
Replies
0
Boosts
0
Views
1.1k
Activity
Feb ’16
Reply to Not Receiving Incoming VoIP Push Notifications on iOS 18.4 (React Native App)
I'm experiencing a similar issue. Push notifications work correctly on iOS simulators running 17.5 and 18.3.1, but they aren't showing up on the iOS 18.4 simulator. Interestingly, everything still works fine on a physical device running iOS 18.4.
Replies
Boosts
Views
Activity
Apr ’25
Reply to Stickers not showing, only app icon
Make sure you're on the latest official version of xcode, then on the device you're running the build on, make sure you have pressed Trust this Device under General -> Device Management -> [Your App]. Then re-run your build via Xcode and your stickers will show up.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’17
Reply to NSMenu call to factory method popUpContextMenu:withEvent:forView: results in __NSCFBoolean length unrecognized selector sent to instance
Does your app provide a Cocoa Service? If so, show the NSServices key from your Info.plist.This may be an issue of messaging a zombie. Try running reproducing the issue when running your app under the Zombies template.Even if it's not a zombie, Instruments should be able to show you the allocation history of the address of the __NSCFBoolean instance which is being incorrectly sent a -length message. That may help you figure out why there's an __NSCFBoolean instance where AppKit is expecting an object which responds to -length (such as an NSString instance).
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Jan ’17
App not showing in store
i renewed my account but app is not showing up. Do I need to do something hi big else to get it restored?
Replies
0
Boosts
0
Views
279
Activity
Jan ’21
ShareServices not showing flickr
I'm running the ShareServices demo app and see that flickr is not a choice in the service picker. However if I run Preview and share an image, flickr is available. What's the difference?
Replies
0
Boosts
0
Views
248
Activity
Sep ’15
Reply to Is macOS Big Sur really macOS 10.16 under the hood not macOS 11
I hope you can give a more clear answer. Right now, the initial Big Sur developer release shows two different version numbers: 1) In About, it shows 11.0 2) In software, or in the Terminal, it shows as 10.16. For example, in the Terminal, if you run swvers -productVersion, you get 10.16. In a future Big Sur developer release, will swvers -productVersion return 11.0?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’20
XCode 7.3, show nothing in "window>devices>show provision profiles"
I have two devices, one is iPhone 5, the other is iPad 3(new iPad),both are iOS 9.2.1.Before someday (seems xcode update or what),XCode Device windowstill shows provision profiles, but now they won't show it at all.Though the app deployment and test is working fine,I don't know what happed, or this means any bugs?
Replies
1
Boosts
0
Views
693
Activity
Mar ’16
GPU Frame Capture shows wrong times
I'm using a single Compute Command Encoder to execute 5 kernel functions.My aim is to measure the execution time of each kernel function.However, when I try to profile the application via GPU Frame Capture, Xcode shows clearly wrong times – the sum of execution times of all 5 kernel functions is always 100µs (every time I profile the app). I've also tried to execute just one kernel function, but according to Xcode, running just one kernel function takes the same 100µs as if I was running 5 kernels.Please take a look at the following 2 images: i.imgur.com/p8F59hp.png (running 5 kernels)andi.imgur.com/i8OEKEQ.png (running 1 kernel).My comment: Based on the fact that the executions times always sum up to 100, I'd say they represent percentages if they weren't displayed with the units (nanoseconds and microseconds). I've also tried switching between showing percentages and time, but I've been unable to see the actual durations.Whan can I do to see the actual (
Replies
1
Boosts
0
Views
668
Activity
Sep ’16
LaunchScreen does not show on device
For my new app I'm trying to do things the right or at least new way, so I am using this LaunchScreen.storyboard for my splash screen. It was working fine, but now has suddenly stopped. It doesn't display on the device -- it works on the simulator. It's not just a case of the UI image not showing because the launch screen shows black, and my launch viewController background is white. Any ideas why this would stop working on the device?ThanksBob
Replies
1
Boosts
0
Views
3.2k
Activity
Aug ’17
Reply to "Running <playground-name>", "Launching simulator", and freezing issues
Hi everyone, i hve the same problem, tryng lo learn to use xcode with app developer payground (from Apple).But is impossible to use...continuing to stuck and show:(spinning circle) Launcing simulatoror(spinning cicle) Running file_namebut no results showing....how can i fix it?Thanks
Replies
Boosts
Views
Activity
Apr ’18
Reply to Does Xcode 12 (12A7209) crash Spotlight? Also Core Data template does not run in Simulator. Also makes Mac super hot and fans whirl?!
I'm also seeing that using the Core Data template with SwiftUI and running it in Simulator produces a blank white screen and never shows the timestamp list.
Replies
Boosts
Views
Activity
Sep ’20
Reply to Sandbox: This item is no longer available
Still not working for me. Seems down even though apple developer status shows up and running. https://developer.apple.com/system-status/
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Mar ’20