Search results for

“show when run”

117,536 results found

Post

Replies

Boosts

Views

Activity

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
Not showing BSSID or Country Code with airport -s command
Hello! I am trying to run the airport -s command to get a list of all the wifi networks around me for something I'm working on. However, the BSSID's and Country Codes (CC) are both not showing in the output. I also tried the airport -I command, and that doesn't show it either. Running M1 Macbook Pro 13 inch, MacOS 12.0.1. I tried this on another MacBook (2014 11 inch air) running Big Sur, and it worked perfectly there. Is this something with Monterey, or is it something else? Thanks
3
0
4k
Nov ’21
iOS 9 Beta 5- Calendar Privacy Access Alert not showing up on iPhone but is showing up on simulator
I'm having trouble trying to get my watchkit app to access the calendar. Before, when my phone was running ios 9 beta 3, I would get an alert asking for the app to access the calendar. Now in ios 9 beta 5, the same exact project won't create the privacy alert, so my app can't access the calendar.Specifically this is my code (this is in my watchkit app)if ([store respondsToSelector:@selector(requestAccessToEntityType:completion:)]) { NSLog(@Monkey); [store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) { NSLog(@Banana); /* more code here */ } }Essentially the app now only logs Monkey, but in ios 9 Beta 3 the app would log both Monkey and Banana. Basically the app is refusing to run anything in the block[store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error)Using breakpoints, the app just skips anything inside the block and the app continues to run. According to the documents I need this code when the app tr
1
0
321
Sep ’15
App randomly showing on apple store
Hi, Our app successfully passed Apple verification steps and started to show on the Apple store Friday. All day friday the app showed and I can see from the ananlytics there was 62 download but then since Saturday the app randomly show on the apple store and no downloads. if I type videoelephant tv which is our app sometime it shows as normal while other times it doesn't or show other apps first in the results... This is most bizarre and seems to be an issue on Apple side. Has any of you experienced the same issue? I have logged a support case with Apple but no news so far. Any help appreciated.
1
0
194
Sep ’20
CoreML model only runs on CPU
Hey guys, I converted a T5-base (encoder/decoder) model to a CoreML model using https://github.com/huggingface/exporters (which are using coremltools under the hood). When creating a performance report for the decoder model within XCode it shows that all compute units are mapped to the CPU. This is also the experience I have when profiling the model (GPU and ANE are not used). I was under the impression that CoreML would divide up the layers and run those that can run on the GPU / ANE, but maybe I misunderstood. Is there anything I can do to get this to not run on the CPU exclusively?
0
0
1.7k
May ’23
Showing nearby WiFi devices in your application
We are working on a hardware device which will be used as a standalone device with only a wifi connection for servicing. We would like to show all nearby devices in our service application running on iOS and allow the service engineer to connect to it from within the application (so without leaving the application) As I understand correctly the only way this can be done is supporting the Wireless Accessory Configuration (WAC) by joining the MFi program. Before making our hardware MFi ready I would like to know if my assumptions are correct and there is no alternative API which can be used instead. thanks in advance for your answers, Niels
6
0
1.6k
Mar ’22
selectively show UITableViewRowAction with unexpected behaviour
Hi there. Just wondering whether the behaviour I'm running into working with table views is a bug or I'm missing something in my implementation.I have an app where I want to selectively apply custom row actions, where an Undo action will only appear for cells who have had their values modified today.Rough code from the editActionsForRowAtIndexPath method follows:if amt > 0 { let undo = UITableViewRowAction(style: .Normal, title: Undo, handler: { action, index in // stuff happens here }) return [undo] } else { return [] }What happens is that if I swipe on one of the cells that should be valid (i.e. amt > 0) the Undo action correctly shows up. When I swipe on a row where the value of amt is equal to 0, it correctly shows no Undo action (small bounce one the swipe action but no options). From then on, the swipe action fails to work on any of the table rows until I reload the app, with not even the small bounce which I see initially for rows for which Undo should not be an option.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
209
Feb ’16
My app is not showing in appstore
My app is not showing on iPhone lower than version 13 on Appstore. iPhone with version 13 shows the app availability on App Store. This is my development report. Minimum deployment version is 11 on Xcode. [✓] Flutter (Channel stable, 2.8.1, on macOS 12.1 21C52 darwin-x64, locale en-US) [✓] Android toolchain - develop for Android devices (Android SDK version 32.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 13.2.1) [✓] Chrome - develop for the web [✓] Android Studio (version 2020.3) [✓] VS Code (version 1.63.2) [✓] Connected device (1 available)
0
0
440
Jan ’22
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
Not showing BSSID or Country Code with airport -s command
Hello! I am trying to run the airport -s command to get a list of all the wifi networks around me for something I'm working on. However, the BSSID's and Country Codes (CC) are both not showing in the output. I also tried the airport -I command, and that doesn't show it either. Running M1 Macbook Pro 13 inch, MacOS 12.0.1. I tried this on another MacBook (2014 11 inch air) running Big Sur, and it worked perfectly there. Is this something with Monterey, or is it something else? Thanks
Replies
3
Boosts
0
Views
4k
Activity
Nov ’21
iOS 9 Beta 5- Calendar Privacy Access Alert not showing up on iPhone but is showing up on simulator
I'm having trouble trying to get my watchkit app to access the calendar. Before, when my phone was running ios 9 beta 3, I would get an alert asking for the app to access the calendar. Now in ios 9 beta 5, the same exact project won't create the privacy alert, so my app can't access the calendar.Specifically this is my code (this is in my watchkit app)if ([store respondsToSelector:@selector(requestAccessToEntityType:completion:)]) { NSLog(@Monkey); [store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) { NSLog(@Banana); /* more code here */ } }Essentially the app now only logs Monkey, but in ios 9 Beta 3 the app would log both Monkey and Banana. Basically the app is refusing to run anything in the block[store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error)Using breakpoints, the app just skips anything inside the block and the app continues to run. According to the documents I need this code when the app tr
Replies
1
Boosts
0
Views
321
Activity
Sep ’15
App randomly showing on apple store
Hi, Our app successfully passed Apple verification steps and started to show on the Apple store Friday. All day friday the app showed and I can see from the ananlytics there was 62 download but then since Saturday the app randomly show on the apple store and no downloads. if I type videoelephant tv which is our app sometime it shows as normal while other times it doesn't or show other apps first in the results... This is most bizarre and seems to be an issue on Apple side. Has any of you experienced the same issue? I have logged a support case with Apple but no news so far. Any help appreciated.
Replies
1
Boosts
0
Views
194
Activity
Sep ’20
when the download button show update
i find a question, when i update a new version app on the app store, The download button on the app store does not prompt for an update,I want to know how to show the update on the appstore.
Replies
2
Boosts
0
Views
569
Activity
Jan ’18
mail not showing sent gmail
for the past several betas, nothings showing up in my sent folder. its showing up fine on ios. any ideas?
Replies
0
Boosts
0
Views
413
Activity
Aug ’19
Not showing after update.
I Just updated to iOS 11 beta 3, when i go under settings–>general–> software update, its still shows as being updated to iOS 11. Shouldn’t it say iOS 11 beta 3?
Replies
0
Boosts
0
Views
202
Activity
Jul ’17
CoreML model only runs on CPU
Hey guys, I converted a T5-base (encoder/decoder) model to a CoreML model using https://github.com/huggingface/exporters (which are using coremltools under the hood). When creating a performance report for the decoder model within XCode it shows that all compute units are mapped to the CPU. This is also the experience I have when profiling the model (GPU and ANE are not used). I was under the impression that CoreML would divide up the layers and run those that can run on the GPU / ANE, but maybe I misunderstood. Is there anything I can do to get this to not run on the CPU exclusively?
Replies
0
Boosts
0
Views
1.7k
Activity
May ’23
Show device's provisioning profiles
In Xcode's (version 16.1) Devices and Simulators window pressing the device's context menu item Show Provisioning Profiles... does nothing: no new window, no message, nothing. How can I fix this?
Replies
8
Boosts
0
Views
1.4k
Activity
Nov ’24
Reply to Multitasking / Slide over / Split View in iOS 9
If the app doesn't support it - it doesn't show up in the 'split view' app switching mode. In other words, only apps that support split view will show up as an available option. Tested on iPad Air running iOS 9 beta 1Unsure about add banners and interstitial.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Showing nearby WiFi devices in your application
We are working on a hardware device which will be used as a standalone device with only a wifi connection for servicing. We would like to show all nearby devices in our service application running on iOS and allow the service engineer to connect to it from within the application (so without leaving the application) As I understand correctly the only way this can be done is supporting the Wireless Accessory Configuration (WAC) by joining the MFi program. Before making our hardware MFi ready I would like to know if my assumptions are correct and there is no alternative API which can be used instead. thanks in advance for your answers, Niels
Replies
6
Boosts
0
Views
1.6k
Activity
Mar ’22
selectively show UITableViewRowAction with unexpected behaviour
Hi there. Just wondering whether the behaviour I'm running into working with table views is a bug or I'm missing something in my implementation.I have an app where I want to selectively apply custom row actions, where an Undo action will only appear for cells who have had their values modified today.Rough code from the editActionsForRowAtIndexPath method follows:if amt > 0 { let undo = UITableViewRowAction(style: .Normal, title: Undo, handler: { action, index in // stuff happens here }) return [undo] } else { return [] }What happens is that if I swipe on one of the cells that should be valid (i.e. amt > 0) the Undo action correctly shows up. When I swipe on a row where the value of amt is equal to 0, it correctly shows no Undo action (small bounce one the swipe action but no options). From then on, the swipe action fails to work on any of the table rows until I reload the app, with not even the small bounce which I see initially for rows for which Undo should not be an option.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
209
Activity
Feb ’16
How to change APIs in an app to run from a different server
Hello, the .ipa file is installed on a iPad. But the app does not run. It shows only the home page and will not do anything when userid and password credentials are entered. Yet, on the Xcode simulator, the app seems to run file. Please help
Replies
0
Boosts
0
Views
345
Activity
Mar ’22
My app is not showing in appstore
My app is not showing on iPhone lower than version 13 on Appstore. iPhone with version 13 shows the app availability on App Store. This is my development report. Minimum deployment version is 11 on Xcode. [✓] Flutter (Channel stable, 2.8.1, on macOS 12.1 21C52 darwin-x64, locale en-US) [✓] Android toolchain - develop for Android devices (Android SDK version 32.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 13.2.1) [✓] Chrome - develop for the web [✓] Android Studio (version 2020.3) [✓] VS Code (version 1.63.2) [✓] Connected device (1 available)
Replies
0
Boosts
0
Views
440
Activity
Jan ’22
Dynamic Notifications not showing
I have updated to watchOS 2 and my dynamic notifications will not show, only the static version. Is this a known bug or am I doing something wrong? Everything works fine in the simulator.
Replies
0
Boosts
0
Views
256
Activity
Jun ’15