Search results for

İOS 26 beta battery %1

250,948 results found

Post

Replies

Boosts

Views

Activity

Reply to Can I install back to iOS 8.3 after trying out iOS 9 beta?
I installed the iOS 9 beta on a secondary iPhone to try out the new OS, including the new Music app. However it seems that app is being released first on iOS 8.4 and is currently omitted from the iOS 9 beta, so I'm considering reverting that phone back from the beta.Before installing the beta, I performed a local iTunes backup. However, after doing so I neglected to switch the backup preference setting back from local to iCloud, and so when the phone performed its automatic nightly backup it overwrote the local iOS 8 backup with one for iOS 9. While it's possible to download an iOS 8.3 IPSW file and downgrade to that version, I don't believe I will be able to restore my data backup, since the sole backup is based on iOS 9.I'm assuming a workaround would be to first restore the last iOS 8 backup file from Time Machine and use that. However, I'm not sure if it's as simple as replacing this backup and rest
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Why does AutoLayout render one way before rotation and another after rotation?
[In the past I've been able to put screenshots in my posts, but it looks like that's gone. I'll replace them with an appropriate emoticon: 😟]Hi, I am trying to use AutoLayout inside a UITableViewCell with Objective-C. I am not using a nib/xib/storyboard. I create my views in code.Here's my UITableViewCell:@implementation SettlementTableViewCell - (instancetype) initWithReuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier]; if (!self) return nil; [self setSelectionStyle:UITableViewCellSelectionStyleNone]; _order = [[UILabel alloc] init]; [_order setTranslatesAutoresizingMaskIntoConstraints:NO]; [_order setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]]; [[self contentView] addSubview:_order]; _amount = [[UILabel alloc] init]; [_amount setTranslatesAutoresizingMaskIntoConstraints:NO]; [_amount setFont:[UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]]; [_amount setTextAlignment:NSTextAlignmentRight]; [[se
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
861
Jun ’15
Reply to What's New in Managing Apple Devices notes
Apple DEP service/hidden admin account - Random GUID. Currently cannot update password/target user. They are working on sending GUID information back to MDM server at creation account time to target later. This isn't a provision profile, but a part of the DEP Setup Assistant activation.Apple Configurator 2- Now uses CommerceKit to support Caching Servers. _Should_ support multiple front-facing IP addresses but could not be confirmed with engineering.- Shared Cache Container- New identifier - com.apple.configurator.ui- Blueprints are .plists and can be exported/imported by moving files to ~/Library/Group Containers/Group.com.apple.configurator/Library/Application Support/com.apple.configurator/Blueprints - EXPECT changes to keys/layout.- Automator actions currently require administrative rights and installation tool does not work - will be fixed in a future update.Apple Caching Service- Can optionally cache iCloud personal / business data (1 or both). Data location is truncated in logs and encrypted o
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Anyone else having problems performing iCloud backup?
On my iPhone it says I performed a backup earlier today. Two actually, one is the normal size I would expect and the other is 0KB. I cannot delete either backup from the phone or the iCloud windows program. When I plug my phone into Itunes the latest iCloud backup it recognizes is the one I did a few minutes before I put iOS 9 on my phone. Is anyone else having problems running iCloud backups on iOS 9?
6
0
1.4k
Jun ’15
Reply to Apple ID username or password is "incorrect" while trying to install OS X 10.11
I do not know if this counts as a fix but it is a work around.I did the following:1) Change your current user account to have a password locally and unlink it from iCloud - so that all the non cloud data stays on your machine2) Create a new account with an iCloud Password3) Login to that and everything seems to work.From this point in you can copy and move files as you see fit.**The Joys of running beta's**
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode setting ENABLE_BITCODE
I am compiling my app in the new Xode7-beta and getting these errorsld: warning: URGENT: all bitcode will be dropped because '***' was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. Note: This will be an error in the future.Where in Xcode does one set this?
11
0
57k
Jun ’15
"MKMapKit viewForAnnotation" no longer changing annotation image in iOS 9.
I've noticed that in iOS 9 the annotations on my map are no longer using the images I wish to assign them and are now just showing up as red pins. This does not happen in iOS 8 or 7. Here is the code I am using to change the annotations image:- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{ if (annotation == mapView.userLocation) return nil; MKPinAnnotationView *annView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@pin]; UIImage *annotationImage = [UIImage imageNamed:@MyFileNameWhatever.png]; annView.image = annotationImage; annView.canShowCallout = YES; return annView; }I can't see any changes in the release notes for iOS 9, has something changed?
7
0
4.2k
Jun ’15
Reply to SIP (System Integrity Protection)
That's some serious changes. We rely on the ability to remote netboot.I don't fully understand the logic.A remote netboot attack would require a netboot server setup on an accessible network. Are they thinking that someone would setup a public facing Netboot server and remote netboot clients to that? That would be painfully slow on most connections. What about locally holding n with HelperIPs? Or booting to the recovery partition and turning it off? Or Target Disk Mode? Or hooking up an external drive to boot from? Closing off that one method seems to punish the good.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15