Search results for

“iPhone 16 pro”

80,746 results found

Post

Replies

Boosts

Views

Activity

Hey Siri
Anyone else use hey siri and have the phone wake up but not provide an audio cue it's listening? I think it didn't hear me so don't say anything and then I get a sorry I didn't get that. Well, I didn't know you were listening! I usually use it when I don't actaully see the phone screen but am in the same room so it happens often.
2
0
232
Jun ’15
Sample code to play sound?
So wondering if anyone has gotten the watch to play any sounds. I've been looking for good sample code to update my old application which relied on the phone to produce the sounds. I found different examples people have been using and nothing seems to work. Currently my code looks as follows:import WatchKitimport Foundationvar player: WKAudioFilePlayer!class InterfaceController: WKInterfaceController { @IBOutlet var TestButton: WKInterfaceButton! override func awakeWithContext(context: AnyObject?) { super.awakeWithContext(context) // Configure interface objects here. } override func willActivate() { // This method is called when watch view controller is about to be visible to user super.willActivate() } override func didDeactivate() { // This method is called when watch view controller is no longer visible super.didDeactivate() } @IBAction func testPressed() { print(test pressed) let filePath = NSBundle.mainBundle().pathForResource(flute, ofType: mp3)! let fileUrl = NSURL.fileURLWithPath(filePath) le
4
0
1.8k
Jun ’15
Reply to iOS 9 Beta battery life
It is recomended to have a seccond device when running DEV firmware. I mean again the assumption that all people here are NOT developers? Then they are in a world of hurt. I rember on my spare iphone in ios 8 at one point it used a lot of data and I had to disable wifi. I hope non Devs will watch their data ussage or they might get a suprising bill.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
watch os 2 file exchange
I'm trying to send a text data from watchOS 2 to iPhone but found out the hard way that I can no longer use openParentApplication on iOS9. So my next recommended option is to save text into a file and send it via shared groups, which from the watchOS 2 transitioning guide is no longer possible:You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.WatchOS2 transition doc says there are mechanisms to do transfer of a file over network but no specifics or guidance.While Apple Watch provides mechanisms to facilitate those transfers, you must update your data-handling code to support those mechanisms.What are the mechanisms?I read through the WKInterfaceController doc and header file and didn't see an API to do network file transfer.
2
0
600
Jun ’15
Fix re-entering password 10x on login - Keychain access iCloud on El Capitan
I have to keep entering in my password about 10x every time I restart even after authenticating my iCloud keychain access on my devices and Macbook Pro. How do I make sure that the Keychain access works properly so I don't need to enter in my password 10x everytime I restart my MacBook Pro or log-in?It also says pending on my iCloud Keychain on my iPhone.I tried going back into Settings > iCloud -- but it crashes every single time. I have also tried going to this locally on my browser, but don't know how to delete the files? file:///Users/<user name>/Library/Application%20Support/iCloud/Accounts/
6
0
2.7k
Jun ’15
After Downgrade from IOS 9 beta to IOS 8.3 no Imessage and Facetime activation
Hey there,i tested IOS 9 Beta 1 on my iPhone 5s. IMESSAGE and FACETIME could be activated without any problems.No i did a downgrade to IOS 8.3 and have now the problem, that i stuck in IMESSAGE and FACETIME ACTIVATION.If i install IOS 9 again, both could be activated.I also did a clean install (DFU-Mode) and set as new device.Please help ...Greetz Tommy
3
0
446
Jun ’15
Reply to iOS 9 Beta battery life
Yes Yes and Yes. It is Mobile data. I got a Mesage this A.M from ATT saying ive reached 75% of the 5GB network and If I exceed it my data will be rolled back. I have unlimited data, though I havnt been streaming any music or any other data eating modes so Apple must be doing some heavy testing. I switched off celluar data so we will see if that helps soonUPDATE! Yes disableing Mobile Data did the trick! Although the home screen in the top right says iphone instead of ATT LTE and does if I TURN ON Mobile Data too. Just Saying
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Battery problem - own app
Hi allI made an app for my own. I observed that if my app is installed the battery life is decreased. The standby and usage time is the same. I tried on 2 phones, one iphone 6 and one iphone 5s. Ios 8. The app is made in swift. It doesn't have any background refresh, message center stuff, turned on. It uses cloudkit for data sync. Is this a normal behaviour? How can, than, make apps for my own, i don't wanna put this on the app store, not at this time. Maybe i will in future.
0
0
118
Jun ’15
WCSession reachable
I am trying to check if the reachable property of a session is getting updated when iPhone bluetooth turns offto do so, i have written a tiny app that changes label text on the watchif session.reachable == true {label.setText(YES)} else {label.setText(NO)}but the problem is that session.reachable is true always, all the time label text is YESi have also tried sessionReachabilityDidChange , but it doesn't seem to be updating the reachable bool valueany idea? is it still buggy, or am i doing something wrong?
9
0
1.4k
Jun ’15
Reply to Can't restore backup to iOS8 from 9 beta
If you have a full backup from an iOS 8.x installation, and if you have a full copy of the iOS 8.x firmware full, you will be able to restore using the full firmware, then use the backup. If you do not have the full iOS 8.x backup, you'll have to restore as a new iphone/ipad
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Hey Siri
Anyone else use hey siri and have the phone wake up but not provide an audio cue it's listening? I think it didn't hear me so don't say anything and then I get a sorry I didn't get that. Well, I didn't know you were listening! I usually use it when I don't actaully see the phone screen but am in the same room so it happens often.
Replies
2
Boosts
0
Views
232
Activity
Jun ’15
Reply to iOS 9 Beta battery life
Same here, i went to work looked at my phone on my break after 5 hrs phone was dead 😕. was not even using it.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Sample code to play sound?
So wondering if anyone has gotten the watch to play any sounds. I've been looking for good sample code to update my old application which relied on the phone to produce the sounds. I found different examples people have been using and nothing seems to work. Currently my code looks as follows:import WatchKitimport Foundationvar player: WKAudioFilePlayer!class InterfaceController: WKInterfaceController { @IBOutlet var TestButton: WKInterfaceButton! override func awakeWithContext(context: AnyObject?) { super.awakeWithContext(context) // Configure interface objects here. } override func willActivate() { // This method is called when watch view controller is about to be visible to user super.willActivate() } override func didDeactivate() { // This method is called when watch view controller is no longer visible super.didDeactivate() } @IBAction func testPressed() { print(test pressed) let filePath = NSBundle.mainBundle().pathForResource(flute, ofType: mp3)! let fileUrl = NSURL.fileURLWithPath(filePath) le
Replies
4
Boosts
0
Views
1.8k
Activity
Jun ’15
Reply to Strava/BlueTooth issue?
I have got the same problem on my device iphone 6. Also the problem has got the runtastic bike app
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
friend photo not updating on the Apple watch
I'm runnning Watch os 2. I am noticing that the friends photos are not updating in the watch. the names and info is but not the photo. they are shouing up on the watch app on the iphone 6 running ios9 tho. Any ideas or fixes?
Replies
0
Boosts
0
Views
93
Activity
Jun ’15
Reply to iOS 9 Beta battery life
It is recomended to have a seccond device when running DEV firmware. I mean again the assumption that all people here are NOT developers? Then they are in a world of hurt. I rember on my spare iphone in ios 8 at one point it used a lot of data and I had to disable wifi. I hope non Devs will watch their data ussage or they might get a suprising bill.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
watch os 2 file exchange
I'm trying to send a text data from watchOS 2 to iPhone but found out the hard way that I can no longer use openParentApplication on iOS9. So my next recommended option is to save text into a file and send it via shared groups, which from the watchOS 2 transitioning guide is no longer possible:You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.WatchOS2 transition doc says there are mechanisms to do transfer of a file over network but no specifics or guidance.While Apple Watch provides mechanisms to facilitate those transfers, you must update your data-handling code to support those mechanisms.What are the mechanisms?I read through the WKInterfaceController doc and header file and didn't see an API to do network file transfer.
Replies
2
Boosts
0
Views
600
Activity
Jun ’15
speakerphone no longer working
is anybody else experiencing issues with their iphone speakerphone not working after upgrade to ios9 beta?
Replies
2
Boosts
0
Views
188
Activity
Jun ’15
Fix re-entering password 10x on login - Keychain access iCloud on El Capitan
I have to keep entering in my password about 10x every time I restart even after authenticating my iCloud keychain access on my devices and Macbook Pro. How do I make sure that the Keychain access works properly so I don't need to enter in my password 10x everytime I restart my MacBook Pro or log-in?It also says pending on my iCloud Keychain on my iPhone.I tried going back into Settings > iCloud -- but it crashes every single time. I have also tried going to this locally on my browser, but don't know how to delete the files? file:///Users/<user name>/Library/Application%20Support/iCloud/Accounts/
Replies
6
Boosts
0
Views
2.7k
Activity
Jun ’15
Reply to speakerphone no longer working
Yes! I lost all my text tones too. Default must be vibrate. I had to go to phone settings Sounds make sure vibrate on ring and vibrate on silent are OFF and that fixed it
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
After Downgrade from IOS 9 beta to IOS 8.3 no Imessage and Facetime activation
Hey there,i tested IOS 9 Beta 1 on my iPhone 5s. IMESSAGE and FACETIME could be activated without any problems.No i did a downgrade to IOS 8.3 and have now the problem, that i stuck in IMESSAGE and FACETIME ACTIVATION.If i install IOS 9 again, both could be activated.I also did a clean install (DFU-Mode) and set as new device.Please help ...Greetz Tommy
Replies
3
Boosts
0
Views
446
Activity
Jun ’15
Reply to iOS 9 Beta battery life
Yes Yes and Yes. It is Mobile data. I got a Mesage this A.M from ATT saying ive reached 75% of the 5GB network and If I exceed it my data will be rolled back. I have unlimited data, though I havnt been streaming any music or any other data eating modes so Apple must be doing some heavy testing. I switched off celluar data so we will see if that helps soonUPDATE! Yes disableing Mobile Data did the trick! Although the home screen in the top right says iphone instead of ATT LTE and does if I TURN ON Mobile Data too. Just Saying
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Battery problem - own app
Hi allI made an app for my own. I observed that if my app is installed the battery life is decreased. The standby and usage time is the same. I tried on 2 phones, one iphone 6 and one iphone 5s. Ios 8. The app is made in swift. It doesn't have any background refresh, message center stuff, turned on. It uses cloudkit for data sync. Is this a normal behaviour? How can, than, make apps for my own, i don't wanna put this on the app store, not at this time. Maybe i will in future.
Replies
0
Boosts
0
Views
118
Activity
Jun ’15
WCSession reachable
I am trying to check if the reachable property of a session is getting updated when iPhone bluetooth turns offto do so, i have written a tiny app that changes label text on the watchif session.reachable == true {label.setText(YES)} else {label.setText(NO)}but the problem is that session.reachable is true always, all the time label text is YESi have also tried sessionReachabilityDidChange , but it doesn't seem to be updating the reachable bool valueany idea? is it still buggy, or am i doing something wrong?
Replies
9
Boosts
0
Views
1.4k
Activity
Jun ’15