Search results for

“iPhone 16 pro”

80,726 results found

Post

Replies

Boosts

Views

Activity

Apple Watch Metadata Rejection - Background images are not displaying
I have been rejected 3 times based upon metadata rejection.We still continue to notice that your marketing screenshot(s) do not sufficiently reflect your app in use.- Metadata screenshots do not demonstrate the app functionality in use.My application is showing up with a black screen. The buttons are intact but the background images must not be showing up when the apple review team is reviewing my Apple Watch app. When I archive I am doing so choosing the iPhone profile. I wonder if my images for the Apple Watch are not being included in the submission bundle?When I try it in simulator I see my app works perfectly with all of the images displaying in the background of the watch.Has anyone else had this issue?Help!
0
0
333
Jun ’15
WCSession sendMessage returning errors (simulator)
I think I've got my Connectivity stuff set up properly, was going off the Lister sample app. But, every time I try to send stuff via WCSession, it fails. Here's the code:// iOS App, in my ViewController override func viewDidLoad() { super.viewDidLoad() if WCSession.isSupported() { WCSession.defaultSession().delegate = self WCSession.defaultSession().activateSession() } } func session(session: WCSession, didReceiveMessage message: [String : AnyObject]) { let msg = message[message] as! String print(Got message! (msg)) } // -------------- // WatchKit Extension - WKInterfaceController subclass @IBAction func buttonTapped() { let session = WCSession.defaultSession() print(Session is reachable: (session.reachable)) // this is false let msg = [message: derp derp derp] session.sendMessage(msg, replyHandler: { reply in print(Got reply: (reply)) }, errorHandler: { error in print(error: (error)) }) }The error in the errorHandler reads Error Domain=WCErrorDomain Code=7004 The operation couldn’t be completed. (WCErrorDoma
6
0
6.9k
Jun ’15
Reply to addCachedImageWithData?
Ditto. The only method I see now in WKInterfaceDevice related to image cache is cachedImages which is a readonly dictionary of the cached images. There seems to be no way to add or remove images in the cache and I could not find any other mention of image caching in the watchOS 2.0 docs or release notes. Perhaps it's no longer necessary to explicitly cache images with native watchkit apps, since they don't need to be transferred from the iPhone?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
unable to debug watchOS 2 app with Xcode 7
i created a simple test app using the watch app Xcode template in Xcode 7. when i build and run this on the watch simulator, the app never runs. When i try to run the same app on the device (also via Xcode), the app gets installed but never runs. Looking at the watch logs, at appears that nanoappregistryd crashes on the watch right around the same time. sometimes, the watch actually reboots when this happens.Has anyone been able to debug a watchOS 2.0 app via Xcode7?ps: iPhone is on iOS9 and mac is on OSX El Capitan
5
0
1.9k
Jun ’15
Reply to Not finding Carrier
Ok so here is the fix for my problem. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime. I hope this helps others with similiar issues.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Not finding Carrier
Ok so here is the fix for my problem, it may work on yours. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Messages failing to send
Another question: messages are failing to send (and not synching at all with the iPhone's messages history). I get a you must enable iMessage to send messages but in my apple Watch app on the phone, it shows messages are set to mirror the phone. Anyone else having these issues? Any solutions?
2
0
538
Jun ’15
Unable to run updated WatchKit app in Xcode 7's simulator
I've updated the app for watchOS 2 using the built in suggestion with Xcode 7 when you first build it. I've changed all the necessary code so there's no errors or warnings but I can't seem to run either the containing app or the watch app in the simulator; they never launch but they do copy over to the simulators.Is there a new scheme I should be using? I'm using the previous scheme for the main watch app which now automatically lets you choose between running the iPhone 6 simulator with either the 38mm or 42mm watch simulator.
5
0
1.3k
Jun ’15
Reply to iOS 9 Error 14
Never underestimate a bad cable as the possible reason. For some reason, since the beginning of iPhone, you can have a cable that's good enough to get through charging and sometimes syncing, but fails when doing restores and more sensitive tasks. A few tips:Make sure your device registered with the developer program's UDIDs.Make sure iTunes is up to date.Make sure your hosts file on your computer hasn't been modded.Ensure there's no dust or debris in the bottom of your device that may be blocking a solid connection.Try a different cable.Try a different computerAnd if all else fails, the apple store will usually try restoring it for you, even if it's OoW -- though if they also can't restore it, you may be looking at an Out of Warranty service repair.https://support.apple.com/en-us/HT204770Check your USB connectionsErrors: 13, 14, 1600, 1601, 1602, 1603, 1604, 1611, 1643-1650, 2000, 2001, 2002, 2005, 2006, 2009, 4005, 4013, 4014. You might also see a message that includes invalid response.If the USB co
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to iOS 9 carrier name issue iPhone
Ok so here is the fix for my problem. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime. I hope this helps others with similiar issues.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Apple Watch Metadata Rejection - Background images are not displaying
I have been rejected 3 times based upon metadata rejection.We still continue to notice that your marketing screenshot(s) do not sufficiently reflect your app in use.- Metadata screenshots do not demonstrate the app functionality in use.My application is showing up with a black screen. The buttons are intact but the background images must not be showing up when the apple review team is reviewing my Apple Watch app. When I archive I am doing so choosing the iPhone profile. I wonder if my images for the Apple Watch are not being included in the submission bundle?When I try it in simulator I see my app works perfectly with all of the images displaying in the background of the watch.Has anyone else had this issue?Help!
Replies
0
Boosts
0
Views
333
Activity
Jun ’15
WCSession sendMessage returning errors (simulator)
I think I've got my Connectivity stuff set up properly, was going off the Lister sample app. But, every time I try to send stuff via WCSession, it fails. Here's the code:// iOS App, in my ViewController override func viewDidLoad() { super.viewDidLoad() if WCSession.isSupported() { WCSession.defaultSession().delegate = self WCSession.defaultSession().activateSession() } } func session(session: WCSession, didReceiveMessage message: [String : AnyObject]) { let msg = message[message] as! String print(Got message! (msg)) } // -------------- // WatchKit Extension - WKInterfaceController subclass @IBAction func buttonTapped() { let session = WCSession.defaultSession() print(Session is reachable: (session.reachable)) // this is false let msg = [message: derp derp derp] session.sendMessage(msg, replyHandler: { reply in print(Got reply: (reply)) }, errorHandler: { error in print(error: (error)) }) }The error in the errorHandler reads Error Domain=WCErrorDomain Code=7004 The operation couldn’t be completed. (WCErrorDoma
Replies
6
Boosts
0
Views
6.9k
Activity
Jun ’15
Reply to Missing Apple Watch Activity Data
I've seen the same thing. My entire health data repository on the phone and the watch has been erased.Not sure if this is intentional or not, I'm posting a bug, since as a user, I would expect that to be retained.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Contacts not loading
In the Apple Watch app on your iPhone, go to General -> Reset and press Reset Sync Data. Nothing will display on the phone but your Contacts should appear.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Unable to boot after installing beta OS
I am currently experiencing this exact issue! I unpaired and rebooted the phone, and it remains stuck in the boot screen (with the ring of tiny lines on it around the apple logo). Makes zero progress after long periods of time.No way to even re-pair it.Help!
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to addCachedImageWithData?
Ditto. The only method I see now in WKInterfaceDevice related to image cache is cachedImages which is a readonly dictionary of the cached images. There seems to be no way to add or remove images in the cache and I could not find any other mention of image caching in the watchOS 2.0 docs or release notes. Perhaps it's no longer necessary to explicitly cache images with native watchkit apps, since they don't need to be transferred from the iPhone?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
unable to debug watchOS 2 app with Xcode 7
i created a simple test app using the watch app Xcode template in Xcode 7. when i build and run this on the watch simulator, the app never runs. When i try to run the same app on the device (also via Xcode), the app gets installed but never runs. Looking at the watch logs, at appears that nanoappregistryd crashes on the watch right around the same time. sometimes, the watch actually reboots when this happens.Has anyone been able to debug a watchOS 2.0 app via Xcode7?ps: iPhone is on iOS9 and mac is on OSX El Capitan
Replies
5
Boosts
0
Views
1.9k
Activity
Jun ’15
Reply to Not finding Carrier
Ok so here is the fix for my problem. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime. I hope this helps others with similiar issues.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Not finding Carrier
Ok so here is the fix for my problem, it may work on yours. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Messages failing to send
Another question: messages are failing to send (and not synching at all with the iPhone's messages history). I get a you must enable iMessage to send messages but in my apple Watch app on the phone, it shows messages are set to mirror the phone. Anyone else having these issues? Any solutions?
Replies
2
Boosts
0
Views
538
Activity
Jun ’15
waiting for messages to be transferred from your iPhone
I downloaded watch OS 2 and now get the error when I click on mail : waiting for messages to be transferred from your iPhone : I keep getting the error . Any suggestions how to fix it?Moreover, my watchOS no longer connects to the contacts list to retrieve names in the database. The text messages are also not retrievable on iwatch.
Replies
2
Boosts
0
Views
1.5k
Activity
Jun ’15
Unable to run updated WatchKit app in Xcode 7's simulator
I've updated the app for watchOS 2 using the built in suggestion with Xcode 7 when you first build it. I've changed all the necessary code so there's no errors or warnings but I can't seem to run either the containing app or the watch app in the simulator; they never launch but they do copy over to the simulators.Is there a new scheme I should be using? I'm using the previous scheme for the main watch app which now automatically lets you choose between running the iPhone 6 simulator with either the 38mm or 42mm watch simulator.
Replies
5
Boosts
0
Views
1.3k
Activity
Jun ’15
Reply to iOS 9 Error 14
Never underestimate a bad cable as the possible reason. For some reason, since the beginning of iPhone, you can have a cable that's good enough to get through charging and sometimes syncing, but fails when doing restores and more sensitive tasks. A few tips:Make sure your device registered with the developer program's UDIDs.Make sure iTunes is up to date.Make sure your hosts file on your computer hasn't been modded.Ensure there's no dust or debris in the bottom of your device that may be blocking a solid connection.Try a different cable.Try a different computerAnd if all else fails, the apple store will usually try restoring it for you, even if it's OoW -- though if they also can't restore it, you may be looking at an Out of Warranty service repair.https://support.apple.com/en-us/HT204770Check your USB connectionsErrors: 13, 14, 1600, 1601, 1602, 1603, 1604, 1611, 1643-1650, 2000, 2001, 2002, 2005, 2006, 2009, 4005, 4013, 4014. You might also see a message that includes invalid response.If the USB co
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
3rd Party Complications
When I select My Complications in the Apple Watch app on iPhone, the loading indicator spins endlessly. Has anyone been able to access the 3rd party complications?
Replies
2
Boosts
0
Views
310
Activity
Jun ’15
Reply to iOS 9 carrier name issue iPhone
Ok so here is the fix for my problem. After installing beta IOS 9 to the phone set it up as a new phone. Sign in to your icloud account and individully download apps and music you want tested on the phone and the carrier will stay. If restored from a back up the carrier will drop everytime. I hope this helps others with similiar issues.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15