Two parts to session:Transitioning to IPv6-only networksReducing Delays in NetworkingTransitioning to IPv6-only networksMore mobile carriers are moving to IPv6 networksIn Ye Olde Days, cellular data networks used IPv4. As IPv4 addresses ran out, NAT was introduced to make IPs go further.To fix the long-term problem, mobile carriers are now moving to IPv6. But they're also having to support IPv4 with NAT.The carriers want to drop IPv4 with NAT, so they're deploying DNS64/NAT64 to handle translation between IPv4 and IPv6 networks.DNS64 synthesizes an IPv6 address for an IPv4-only serverNAT64 performs IPv6 to IPv4 address translationApp Store apps need to be IPv6 ready - It will be an app submission requirement later in 2015.Enabling IPv6 test network from a Mac1. Boot OS X 10.112. Open System Preferences3. Option-click on the Sharing preference pane4. Option-click on Internet Sharing5. A Create IPv6 Only Network checkbox will appear6. Check Create IPv6 Only Network (this may also be labeled Create NAT64 Network
Search results for
missing package product
50,262 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
So I noticed that there's an updated package for iPad Wifi. The Rev A version worked for me.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
The following was done in our environment:Environment:Server and client on different subnetsHelperIPs configured on network equipmentClient: iMac9,1 with 10.11 (15A178w)Server: Production Netboot Server 10.8.2 - NBI OS 10.10.3n key down on boot - Held n key down on boot - Booted to default NBIoption key down on boot - Held option down on boot - No NBIs presented but thinking this is due to the age of EFI on the computer.Startup Disk selection of netboot - Logged in as local admin - Netboot image(s) visible and selectable - Booted to NBIbless to broadcast - No user logged in - Sent 'bless --netboot --server bsdp://255.255.255.255 --nextonly' via ARD Unix command - Booted to NBISet Netboot via ARD menu - Set startup disk to available NBI in Set Startup Disk option of ARD and rebooted (ARD run from the same subnet as the client) - Booted to NBI
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I have some unit tests that check that saving a managed object subclass with missing required properties fail appropriately. In Swift 1.2, I could do that as follows:XCTAssertFalse(context.save())What is the appropriate way to test the same thing in Swift 2? This works:do { try context.save() } catch { XCTAssertTrue(true) // or something similar }but there must be a better way.
Not sure if this is the best place to post this, but I couldn't find a dedicated HealthKit forum, so I figure this is best.I'm creating an app that tracks workouts at the gym. I've created an HKWorkout and set its activity type to HKWorkoutActivityType.TraditionalStrengthTraining. I run my HKWorkoutSession, the calories get counted, and the workout gets logged in the Health app when completed, but the workout time (I tried five minutes) didn't get added to my green exercise ring on my Apple Watch.It was mentioned in the WWDC keynote that WatchKit apps can contribute to the exercise ring, so I'm wondering if I'm missing something?Another thing I noticed is that while the HKWorkoutSession is created, and I am able to save it later on, my WatchKit app does not stay in the foreground while the workout session is currently in progress. Perhaps this hasn't been implemented in the first beta?
The watch will connect to accessories directly only if it lost the connection with paired iPhone.All the data in HomeKit is synced between iOS and watchOS (including pairing info).
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Perhaps you missed the part where I suggested you symbolicate the log. If you do so, this line0 Rest on Work 0x0000000100094e54 0x100088000 + 52820will indicate the source file and line of code at which it crashed. That's usually a pretty good clue what the problem was.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
I'm writing a code for WatchOS2 extension that uses CMAccelerometerData.Built with no error, running correct scheme, installed in Apple Watch device, but nothing happend.Can not even stop breakpoint on first line.Something missing ?@implementation ExtensionDelegate- (void)applicationDidFinishLaunching { motionManager = [[CMMotionManager alloc] init]; motionManager.accelerometerUpdateInterval = 0.1; if (motionManager.accelerometerAvailable) { [motionManager startAccelerometerUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) { double xx = accelerometerData.acceleration.x; NSLog(@%lf, xx); }]; }}@end
It seems like it would be trivial for them to add the ability to extend a type that conforms to ErrorType to send a userInfo dictionary in that direction, considering that the domain and code are already created by a default implementation in an extension of ErrorType.The domain and code used when converting to an NSError can be customized by implementing the (not-for-production-code) properties _domain and _code.enum MyError: ErrorType { case Simple(num: Int) case Verbose(num: Int, message: String) var _domain: String {return testing_MyError_domain} var _code: Int { switch self { case .Simple(let num): return num case .Verbose(let num, _): return num } } } do {throw MyError.Verbose(num: 404, message: Hello?)} catch { var str = (error as NSError).description let info = (error as NSError).userInfo }There may be an issue of where this stuff could be publically declared/exposed though, since it probably belongs in Cocoa rather than in the Swift standard library.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
I downloaded and updated to iOS 9 Beta and I can't seem to see the NEWS App they are talking about. Did I miss something? Thank you for the help.
OS X is nice because its easy to setup and run and cheap! Never had any issues with it here. I'm still running 10.6.8 on my servers for everything and still running strong so far! I just worry about a drive or other hardware giving out at this point.Anything MS to me is a nightmare. They make things more difficult to setup than nessassary and the technet articles give a whole story and give examples how it should be setup but don't really tell you how to do it. Then half the time its wrong in my experiances. Our MS fanboi is trying to setup the latest version of System Center and is having fun with that and getting it to work and hasn't been too happy. I skimmed over the documentation and noticed it even supports OS X, but Munki can do most of what it can so I have no use for it. Along with with Endpoint Antivirus, but again its lacking in any management on the OS X side so dissappointed.With Netboot, Caching, basic file serving, and profile manager I still think OS X server is liable. If Apple would have kep
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Two part talkiOS Notifications- Silent notifications- User Notifications- Actions- Text Input <- NewApple Push Notification ServiceiOS NotificationsSilent notifications- Not user-facing, they're between the app and the server.- Enabled by default- Background App Refresh - User can turn off, don't rely on them.- Best effort at sending to deviceUser Notifications- Notify the user of something - Appear in the banner, lock screen, pop-up, etc- Require user permission- Can be disabledRemote user notificationsLocal user notificationsRemote user notifications- Sends from the server to your device over the internetLocal notifications- Scheduled by the app directly on the device, internet and server not requiredCan be scheduled by:TimeLocation (geofencing)Interactive NotificationsAllow user notifications to be interactive- The user can choose an option from the notification without launching the app or otherwise interrupting what the user was doing.Applies to both iOS and watchOSUser Notifications text input in iOS
Hi Everyone,I just tried to post this, but the cancel button is right below the tags control, and doesn't have a confirmation action, so I think I lost it. If this is a double post due to some kind of moderation delay apologies in advance...Anyway, on to the issue at hand. I have some Swift 1.2 code for OpenCL that I'm working on porting to Swift 2, and I'm having some trouble with the type system. The way that OpenCL is bridged into swift relies heavily on typedefs, and there are a TON!! of them. I had to perform some gymnastics in 1.2 to convince the type system that my argument is just the right kind of UInt32 (or is it cl_device_info?), but now those aren't enough in 2.A short sample of (some of!) the suspect code follows. There are about 50 instances of this kind of error in the project: private class func deviceInfoString(deviceID: cl_device_id, param paramIn: Int32) throws -> String { let param = cl_device_info(paramIn) var returnBufferSize: Int = 0 var retval: cl_int = CL_SUCCESS retval =
Update to my installs:iPad mini: The battery life finally went down to about 30% after using it for a day and half (last time on charger was when I installed beta and it didn't get to 100%). I streamed some audio for about 45 minutes. Charged back up to 100% and after sitting around for three hours and about 10 minutes of usage, it's still at 100%Usage:13 minStandby: 13 min <-- This does not match actual time off charge.iPod Touch: I went ahead and installed the beta on my iPod Touch. Charged it to 100% and after a few hours it's still holding a full charge.Usage: 9 minutesStandby: 3 hrs 27 miniPhone 5s: I use it as my main phone and for development. I'm not a big developer so I don't have test v. production iPhones, it's more of a hobby with a small income. I downgraded my iPhone back to iOS 8.3. I can update/test my apps on the iPod touch and iPad mini. I'll look at installing on my iPhone after a few more betas.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
This API is accessed via a dependency on the AppleUSBAudio driver, and is officially documented in the SampleUSBAudioPlugin sample code.All of a sudden, kexts calling the pluginDeviceRequest function fail to load because that symbol no longer exists. This has not been documented anywhere, and is very likely a bug. I've failed a radar for it under 21367554.If anyone else has been able to use this function in their kext on OS X 10.11, please let me know.