Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,618 results found

Post

Replies

Boosts

Views

Activity

Cloudkit concurrent connection
Hi everyonei am amazed by the _huge_ amount of data storage given for free by apple with cloudkit. App can scale to 1PB and 10.000.000 users at no cost. and this is amazing. the one thing that make me wonder is the connection per seconds allowed.On the cloudkit page if we bring the bar to the maximum we can see that with 10.000.000 users the connections per seconds are capped to 400.You may say that's a lot and i agree with this. In my weirdest dreams i have 400 users per seconds on my app. BUT. if we consider 10.000.000 milion users, which with a good app could be, due to the vast amount of apple devices out there, 400 users per seconds seems low.Lets suppose i project a social app, something that can get for example 1 milion users. it will be likely that of this 1 milion user at least 1% can connect at the same time, ok maybe not at that precise single seconds in the day, but 10.000 user can connect in the same moment. So if i base my app on cloudkit, which seems great to me, this means that i get a spyke t
1
0
3.5k
Jun ’15
Bitcode and Assembly?
I work for a third party library vendor and we are pretty sure our customers will ask us for a Bitcode version of our library.We are very performance sensitive though, and we've optimized critical sections of our library in NEON assembly. When we compile to LLVM bitcode, we are assuming that NEON assembly will be encapsulated. Is that correct?We're also worried about writing code in assembly though. Bitcode seems to leave open the possibility that our application could end up running on a platform who's capabilities we did not optimize for in advance. It seems like it might be a good idea to make sure our software paths are working well. Would it also be a good idea to attempt to drop out of NEON directly and use the LLVM SIMD intrinsics? I believe Accelerate was also tried and found to be too high level for our stuff. We're also multiplatform.
19
0
30k
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
877
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
Manually manage display on/off
Hi, With watchOS 2 going live now, I was searching on the references if Apple added a new function for managing when the screen shouldn't go off. It's important for me, cause I'm develeping an app for managing 1d barcode storecard, and the screen go off when you move your wrist...If some has an information about this, please let me know.Thanks
2
0
269
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
"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