Search results for

“show when run”

117,536 results found

Post

Replies

Boosts

Views

Activity

How to get a Smart Card reader to run?
Hi, I'm trying to get a smart card reader to run with Xcode. I set up the com.apple.security.smartcard entitlement in the .entitlements file and added it in Bild Settings -> Code Signing Entitlements. But when I run: codesign -d --entitlements - Path/to/App, nothing smart card related shows up. Also the TKSmartCardSlotManager.default isn't nil, but .slotNames are. Do I have to install some drivers manually? Please help.
1
0
613
Aug ’24
Run Script
I can't able to copy the folder files to another folder through runscript.I am getting error as no such file or directory.I have used below script in run script.rm -rf “$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Data”cp -Rf “$PROJECT_DIR/Heart3Ds_NoAR/Data” “$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Data”
4
0
8.3k
Oct ’15
Reply to Run on iOS 17 with Xcode 13.2.1
The following article shows ways to get around your issue. https://www.swiftdevjournal.com/dealing-with-failed-to-prepare-device-for-development-error-message-in-xcode/ If the workarounds in that article don't work, you will need to find a device running an older version of iOS to run your project on your Mac.
Mar ’24
Swift Playground's LiveView never runs
I'm using Xcode 13.2.1 on a MacBookAir (13-inch, 2017) running MacOS 11.4 BigSur. I'm working on the playgrounds that come along with the Develop in Swift Program but when I'm going through the exercises nothing shows on the LiveView bar on the right. In the activity bar it's stuck saying Running playground name with the blue wheel spinning endlessly. Anyone else having the same problem? Any suggestions?
3
0
1.1k
Jan ’22
show SystemBroadcastPickerView programmatically
Hello,I've recently seen apps present the RPSystemBroadcastPickerView upon a press on their custom UI, not the standard circular button that comes with RPSystemBroadcastPickerView. How do they do this? It seems to me, the only way for these apps to achieve this is to traverse the subviews and send a button press message to every subview that is a UIButton (since buttonPressed: is private API).Would this even pass the App Store review?My app isn't using the Cocoa framework and I cannot show the standard button in my UI, so I'd appreciate any help here. Launching the broadcast from the control center works, but I'd rather not add a tutorial on how to enable broadcasting.Thanks,Wojciech
0
0
1.1k
Jun ’19
Reply to MTKView Drawable Issue
Yeah me too. Running the Apple Metal BasicTexturing sample on an iPad Air 3rd Gen I see the `drawableSizeWillChange` method being called with the correct view size of 1668x2224 and then shortly afterwards with a size of 2965x1251.Glad it's not just me.EDIT: Reported error via Feedback Assistant.P.S. On a related note, any Metal developers here know why the same sample running on macOS 10.15 beta 7 shows the geometry to be broken (second image from GPU Frame Capture showing geometry)?
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’19
MapKit JS not showing annotation title in WKWebview
I have an Ionic App which makes my map run in all browsers. It runs in Safari, Chrome, Android Native (Web View for Android), and iOS Native (WKWebview). However, in iOS and and Android Native (Not running Safari/Chrome to go to a website) the titles for annotations aren't shown below the MarkerAnnotation. They are shown for everything else. Any idea why?Safari vs. WKWebView (I'm not sure why the images aren't showing)
2
0
1.5k
Feb ’19
Big Sur - Tv monitor only shows Desktop
I have a tv monitor attached to my macbook via hdmi. This was working perfectly until the upgrade. Now, when I link up the tv, it only shows the desktop but none of the apps I am running (Safari, Zwift, Music) although they are showing on the laptop. If I click on system preferences, this opens on the tv but the pointer isnt present on the tv. How do I get the TV to mirror what is on the screen and volume like before?
0
0
340
Nov ’20
Topshelf TVTopShelfCarouselItem title not showing
I would like for the topshelf TVTopShelfCarouselItem title and context title to show up when the topshelf shows up. Currently they are showing only after the user swipes up and then taps on the remote which shows all the UI, including the play button and more info button. Not showing the title results in the topshelf only showing an image (of a movie for example), and the user has no way of seeing the title until they interact with the UI. In Apple's TV app, the title is showing, in custom font, as soon as the topshelf is visible, while the app tray is still present. This is clearly a better user experience. Is there a way to do this or is this feature available only to Apple apps?
0
0
665
Dec ’20
Reply to can not create iOS 27 Simulator
I'm having a similar issue. The weird part is that the app is clearly running, I can see the logs on Xcode, but the device hub doesn't show any iOS 27 simulator.
Replies
Boosts
Views
Activity
Jun ’26
How to get a Smart Card reader to run?
Hi, I'm trying to get a smart card reader to run with Xcode. I set up the com.apple.security.smartcard entitlement in the .entitlements file and added it in Bild Settings -> Code Signing Entitlements. But when I run: codesign -d --entitlements - Path/to/App, nothing smart card related shows up. Also the TKSmartCardSlotManager.default isn't nil, but .slotNames are. Do I have to install some drivers manually? Please help.
Replies
1
Boosts
0
Views
613
Activity
Aug ’24
Run Script
I can't able to copy the folder files to another folder through runscript.I am getting error as no such file or directory.I have used below script in run script.rm -rf “$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Data”cp -Rf “$PROJECT_DIR/Heart3Ds_NoAR/Data” “$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Data”
Replies
4
Boosts
0
Views
8.3k
Activity
Oct ’15
Calendars showing Birthdays more then once
Hey,the Beta 8 from Today have a strange bug.My Contacts showing 4 times Birthdays in Calendar.I Cannot get rip off it. Anyone else see this, too?
Replies
1
Boosts
0
Views
647
Activity
Aug ’19
Reply to Run on iOS 17 with Xcode 13.2.1
The following article shows ways to get around your issue. https://www.swiftdevjournal.com/dealing-with-failed-to-prepare-device-for-development-error-message-in-xcode/ If the workarounds in that article don't work, you will need to find a device running an older version of iOS to run your project on your Mac.
Replies
Boosts
Views
Activity
Mar ’24
Swift Playground's LiveView never runs
I'm using Xcode 13.2.1 on a MacBookAir (13-inch, 2017) running MacOS 11.4 BigSur. I'm working on the playgrounds that come along with the Develop in Swift Program but when I'm going through the exercises nothing shows on the LiveView bar on the right. In the activity bar it's stuck saying Running playground name with the blue wheel spinning endlessly. Anyone else having the same problem? Any suggestions?
Replies
3
Boosts
0
Views
1.1k
Activity
Jan ’22
show SystemBroadcastPickerView programmatically
Hello,I've recently seen apps present the RPSystemBroadcastPickerView upon a press on their custom UI, not the standard circular button that comes with RPSystemBroadcastPickerView. How do they do this? It seems to me, the only way for these apps to achieve this is to traverse the subviews and send a button press message to every subview that is a UIButton (since buttonPressed: is private API).Would this even pass the App Store review?My app isn't using the Cocoa framework and I cannot show the standard button in my UI, so I'd appreciate any help here. Launching the broadcast from the control center works, but I'd rather not add a tutorial on how to enable broadcasting.Thanks,Wojciech
Replies
0
Boosts
0
Views
1.1k
Activity
Jun ’19
Not showing in New Releases
Hi,We released our weather app Weather Gods on November 4th.Just wondered when it will show up in New Releases - today is November 10thThanksScott
Replies
5
Boosts
0
Views
392
Activity
Nov ’16
Reply to MTKView Drawable Issue
Yeah me too. Running the Apple Metal BasicTexturing sample on an iPad Air 3rd Gen I see the `drawableSizeWillChange` method being called with the correct view size of 1668x2224 and then shortly afterwards with a size of 2965x1251.Glad it's not just me.EDIT: Reported error via Feedback Assistant.P.S. On a related note, any Metal developers here know why the same sample running on macOS 10.15 beta 7 shows the geometry to be broken (second image from GPU Frame Capture showing geometry)?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’19
opengl showing blank window
I had a working version of opengl code that works correctly on macOS 10.13.6 but has stopped working 10.14. The code simply shows me a blank screen. Is it because the opengl api have started to be marked deprecated.
Replies
1
Boosts
0
Views
1k
Activity
Sep ’18
MapKit JS not showing annotation title in WKWebview
I have an Ionic App which makes my map run in all browsers. It runs in Safari, Chrome, Android Native (Web View for Android), and iOS Native (WKWebview). However, in iOS and and Android Native (Not running Safari/Chrome to go to a website) the titles for annotations aren't shown below the MarkerAnnotation. They are shown for everything else. Any idea why?Safari vs. WKWebView (I'm not sure why the images aren't showing)
Replies
2
Boosts
0
Views
1.5k
Activity
Feb ’19
Consuming a lot of memory, when XCUITest runs
Hi I test our enterprise app with XCUITest I faced issue that consuming a lot of memory, when UI testing runs. it consumes 270GB on Simulator, I can't test it on Real device(it shows message that needs more memory) How I can solve this issue?
Replies
0
Boosts
0
Views
415
Activity
Sep ’20
Big Sur - Tv monitor only shows Desktop
I have a tv monitor attached to my macbook via hdmi. This was working perfectly until the upgrade. Now, when I link up the tv, it only shows the desktop but none of the apps I am running (Safari, Zwift, Music) although they are showing on the laptop. If I click on system preferences, this opens on the tv but the pointer isnt present on the tv. How do I get the TV to mirror what is on the screen and volume like before?
Replies
0
Boosts
0
Views
340
Activity
Nov ’20
Topshelf TVTopShelfCarouselItem title not showing
I would like for the topshelf TVTopShelfCarouselItem title and context title to show up when the topshelf shows up. Currently they are showing only after the user swipes up and then taps on the remote which shows all the UI, including the play button and more info button. Not showing the title results in the topshelf only showing an image (of a movie for example), and the user has no way of seeing the title until they interact with the UI. In Apple's TV app, the title is showing, in custom font, as soon as the topshelf is visible, while the app tray is still present. This is clearly a better user experience. Is there a way to do this or is this feature available only to Apple apps?
Replies
0
Boosts
0
Views
665
Activity
Dec ’20
iPhone shows as "ineligible" in Xcode
My iPhone 6 shows as ineligible in Xcode as a build target for my personal app. I have it enrolled in the iOS 9 Beta Software testing program and have that profile installed. Is that what's preventing me from using it?
Replies
2
Boosts
0
Views
1.7k
Activity
Oct ’15