Post marked as unsolved
4.7k
Views
Since installing beta 3, my watch can’t even open the home app and Siri won’t be able to complete any HomeKit commands. Anyone else with this issue?
Post marked as unsolved
4.6k
Views
since last full charge, 4 hours 15 minutes usage, standby 4 hours 15 minutes. Can’t figure out what is using the power. Background app refresh is turned off, photo updating is paused, every app closed, screen confirmed to be off, no calls made.
Post marked as unsolved
9.7k
Views
After Beta 3, I cannot update or download any apps on my new iPad Pro. Circle just spins forever, nothing updates, never even pulls up the payment card when getting a new app.
Post marked as unsolved
4.7k
Views
My AppStore had been working perfectly fine on my 2015 iPad Pro 12.9” model. Then today, I opened it up to see that it was in Chinese. Everything, Tab Bar, app titles, even the cost of apps had changed from American dollars. Anyone else have this issue? It only started today, and my language is still set to American English.
Post marked as unsolved
4.6k
Views
Have noticed I can’t get AirPods to work on my iPad Pro. I submitted it to Apple as a bug (or at least tried to...no option for iOS 11 SMH), just wondering if it is a widespread issue or just with mine.
Post marked as unsolved
4.8k
Views
I remember reading when 10.3 beta first came out that developers would be able to change icons without having to do an update. Is there anywhere that documents that? I also saw that MLB.COM AT BAT app lets you customize which app icon is on your home screen. How is that accomplished?
Post marked as unsolved
128
Views
My app includes a section of news items. I know Siri is somewhat limited on what she can do, but is it possible for her to check the feed within the app if there are any news items dated with the day's date, and if so read them?
Post marked as unsolved
123
Views
So...GM has come, and the continuous of playback using Home Sharing in Computers app is still missing or removed. Anyone know? I loved on our new Apple TVs not having to create playlists in iTunes in order to go from one episode to the next, but now it isn't working. Thoughts? I did file a bug with it.
Post marked as unsolved
8.8k
Views
So, after I downloaded the OTA update to what I assumed was the GM, I realized it was actually iOS 10.0.1(14A403). Anyone else notice this, and does this mean that the version released Tuesday will actually be 10.0.1, or will we forever be a build off?
Post marked as unsolved
374
Views
I have an iPhone 6S Plus and iPad Pro 12.9". Both are running the latest betas. I have an issue where contacts that I add in my iPhone or iPad, don't show as added in the other device. Anyone else seeing this issue?
Post marked as unsolved
277
Views
So here's the deal. We have the 4th Gen Apple TV and some Philips Hue lights. I have HomeKit set up using my ID (HUBBY@ID.COM). However, we use my wife's Apple ID for the photos, as she has 200 GB monthly storage on iCloud. We want the Apple TV to be able to view all of those photos, but still control HomeKit. Here is the issue. If I log into iCloud with MY Apple ID on the Apple TV, we get the HomeKit Connected option, but lose all of her photos. If we login with HER Apple ID, we get pictures, but it never includes a HomeKit button, despite the fact that she is setup in our Home with full access, AND that her Home is turned on in iCloud settings of her phone. So, how come it is that only one of us can use HomeKit with Apple TV? Bug or intednded use?
Post marked as unsolved
212
Views
Anone else have issues with the Auto-Lock feature not working? I have iPad Pro 12.9" and it doesn't matter if I change times for Auto-Lock, it will never lock on its own. Been this way since beta 2, and submitted bug report each time.
Post marked as unsolved
303
Views
Has anyone else noticed any issues with iCloud Photo Library? I have pictures and videos in my iPhone that has iCloud Photo Library turned on that do not appear on my MBA or tv.
Post marked as unsolved
331
Views
When I click on Home from settings app, it has no option anymore to add people to the Home, just a graphic about the Apple TV or iPad as a hub. However, I don't see anywhere to enable the new Apple TV as a hub
Post marked as unsolved
554
Views
Ok, so here is my deal. I have an app I am building for a DJ service. They post gigs, people can view the gigs, and request songs. The DJ can view those requests, and click the song title and have an option to search Spotify for that song. I have to use the Spotify API to get the TRACK ID for that song, and I plug that in to an NSString, and then use a custom url scheme to open up Spotify straight to that track. Below is the code for all this. The issue is that on 9.3.3 it will open spotify and start playing the song. On iOS 10, nothing happens. Is this a bug in iOS 10 Beta 3, or did they change behavior for getting this to work with iOS 10?[actionSheet addAction:[UIAlertAction actionWithTitle:@"Search Spotify" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
NSArray *separated = [wholeThing componentsSeparatedByString:@"Made-Famous-By"];
NSString *songTitle = [[separated objectAtIndex:0] stringByReplacingOccurrencesOfString:@" " withString:@"+"];
NSString *artistName = [[separated objectAtIndex:1] stringByReplacingOccurrencesOfString:@" " withString:@"+"];
NSString *theSong = [[@"%22" stringByAppendingString:songTitle] stringByAppendingString:@"%22"];
NSString *theArtist = [[@"%22" stringByAppendingString:artistName] stringByAppendingString:@"%22"];
NSURL *url = [NSURL URLWithString: [NSString stringWithFormat:@"https:/
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setURL:url];
[request setHTTPMethod:@"GET"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
NSError *error;
NSURLResponse *response;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSDictionary *json = [NSJSONSerialization
JSONObjectWithData:data
options:kNilOptions
error:&error];
if(!error) {
NSDictionary *active = json[@"tracks"];
/
/
NSDictionary *dict1=[json objectForKey:@"tracks"];
NSArray *songTrack = [dict1 valueForKeyPath:@"items.uri"];
NSLog(@"%@", songTrack);
self.toOpen = [songTrack objectAtIndex:0];
NSLog(@"%@", self.toOpen);
/
/
}
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:self.toOpen]];
[self dismissViewControllerAnimated:YES completion:^{
}];
}]];