Search results for

“show when run”

115,117 results found

Post

Replies

Boosts

Views

Activity

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
build and clean run twice?
I recently refactored some common code into a seperate framework. Now for unknown reason when I run clean or build everything executes twice.I am using a workspace that has the project file for my app and my framework.Schema check:I have selected the apps schemaproduct->schema->edit build buildshows the app and framework target. all options are selectedI put the framework target on top of the app targetEmbedded check:In navigator I select the app project and app target. In the general tag I see the framework is embedded. The framework also shows up in the link sectionBuild Setting check:only_active_arch is set to yes for debug and no for all othersbuild phase check:build phase for the app target does not show any dependencies. The framework shows up in the embedded and link sectionsAny idea what I did wrong and how to fix this?Kind regardsAndy
8
0
2.0k
Jan ’18
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
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
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
691
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
658
Sep ’16
Reply to Xcode 9 Degugger
FOUND THE ANSWER. Under Debug --> Debug WorkFlow ... --> If you have Always Show Disassembly...Checked. when you run your code if the Always Show Disassembly is checked you only have the ability to step through your code in the memory location. when unchecked you can step through your code in the normal patern .. i.e. in the class where the breakpoint is.
Oct ’17
Reply to iOS: Unable to see the option of App Icon in the Product Page Optimization page in the app store connect
Came here to say this. I was able to run the icons in a/b tests up until a few weeks ago when it suddenty stopped showing the icons when creating a test.
Replies
Boosts
Views
Activity
Jan ’24
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
877
Activity
Jul ’19
Software update not showing iOS 18.5 beta
Running iPhone 15 Pro Max ios 18.1 beta installed not showing an update to 18.5 anyone have any idea why that is and how I can get the update. cheers
Replies
1
Boosts
0
Views
1.8k
Activity
Aug ’24
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
build and clean run twice?
I recently refactored some common code into a seperate framework. Now for unknown reason when I run clean or build everything executes twice.I am using a workspace that has the project file for my app and my framework.Schema check:I have selected the apps schemaproduct->schema->edit build buildshows the app and framework target. all options are selectedI put the framework target on top of the app targetEmbedded check:In navigator I select the app project and app target. In the general tag I see the framework is embedded. The framework also shows up in the link sectionBuild Setting check:only_active_arch is set to yes for debug and no for all othersbuild phase check:build phase for the app target does not show any dependencies. The framework shows up in the embedded and link sectionsAny idea what I did wrong and how to fix this?Kind regardsAndy
Replies
8
Boosts
0
Views
2.0k
Activity
Jan ’18
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
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
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
691
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
658
Activity
Sep ’16
Show library calls in Instruments
Is there any way to show in detail pane calls form some library and hide calls form other libraries?
Replies
0
Boosts
0
Views
331
Activity
Feb ’17
Lock Screen showing apps.
Does Apple now allow us to have our apps show on the lock screen and have access to them?Stright forward..ThanksJZ
Replies
3
Boosts
0
Views
864
Activity
Apr ’18
Reply to Xcode 9 Degugger
FOUND THE ANSWER. Under Debug --> Debug WorkFlow ... --> If you have Always Show Disassembly...Checked. when you run your code if the Always Show Disassembly is checked you only have the ability to step through your code in the memory location. when unchecked you can step through your code in the normal patern .. i.e. in the class where the breakpoint is.
Replies
Boosts
Views
Activity
Oct ’17