Hello all, I've just created a new playground to test drive the new GameplayKit and I can't seem to get the playground out of a continuous running playground that never ends.Just for kicks, I deleted my code and replaced it for the one that comes by default (the hello playground stuff) and it has still not finished running.Should I file a radar?Has anyone experienced this?Thanks!
Search results for
İOS 26 beta battery %1
250,967 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Have you ever done a iOS beta before? These are very much to be expected.1. The claims they make will be what they are expecting for the final release2. iOS 6 beta was significantly worse.3. If you think this is bad... just wait, in the past the betas have gone from bad battery life to good, to bad again. They are working out the issues, you cannot expect this to work like a final product... because well, it is far from it.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Google Now is coming out with an API that lets developer index their apps for new services to be used with voice and support for new sentences (even interactive ones) from 3rd party devs? For example show me the closest Japanese restaurants in Yelp
Apple views privacy as a human rightApp developers - be mindful of privacyKeeping the app ecosystem as a trusted place is important.Architecting for privacyData retentionData privacyData storageIdentifiersData RetentionHave a retention policyDelete data when it no longer serves a user needCollect the minimum data necessaryBalance storage of data against the risk of compromiseData Minimization TechniquesAnonymizeAggregateSampleDe-resolveDecayMinimizeWhat's the use of the data? What decisions are the collected data driving? If you can't come up with an answer, don't collect it. Minimize.Data transferEncrypt data in transitKeep sensitive data on the device, do not transmitProcess sensitive data on-deviceA good example of sensitive data - health data for a workout app. Process it on the device.On Device- Data protection- Keychain - store your secrets inside a keychain's encrypted storageServer side- Encrypt data at rest- CloudKitTransparencyBe clear about what data is being collected- Give users the ability to in
Just wondering, I've seen this working on other videos of the beta, but I cannot swipe left to get the new search window to appear. I also couldn't find specific information if maybe this is just a feature not available on the original ipad mini. Anyone else?
This line of code I could not get to compile in S2 (yes it worked in 1.2):let newerDate = calendar.dateByAddingUnit(NSCalendarUnit.Day, value: 1, toDate: NSDate(), options: nil)The error message:Cannot invoke 'dateByAddingUnit' with an argument list of type '(NSCalendarUnit, value: Int, toDate: NSDate, options: nil)'Must be a bug.
I created a SCNView with the Metal Rendering API as shown below, however it does not work. If I change it to any of the opengl options the view is visible, however if set to SCNRenderingAPI.Metal, the view is no longer visible.Example A (This does not work)let options = [SCNPreferredRenderingAPIKey : NSNumber(unsignedLong: SCNRenderingAPI.Metal.rawValue)] let metalGameView = SCNView(frame: self.view.bounds, options: options)Example B (This does work)let options = [SCNPreferredRenderingAPIKey : NSNumber(unsignedLong: SCNRenderingAPI.OpenGLCore41.rawValue)] let metalGameView = SCNView(frame: self.view.bounds, options: options)Update: I've verified this actually works on iOS, just not on my mac. Metal does run successfully on my mac using MetalKit, just not with this scenekit option.
Have tried 5 or 6 times now it install the beta package for 1474 on two diffrent computers. Each time the install freezes after about 10% and itunes pops and error code 14. I have tried diffrent cables and ports with no luck so far. I have tried redownloading the package to insure it wasnt corrupted but still no luck. It restores to 8.3 from both computers without trouble. I am unsure what to do from here. Has anyone else come across this and resolved it? Any suggestions as to what to try next? Your help is appreciated.
Even when building a new ios single view project, it will build and run, but I can't select the storyboard without xcode quitting. Needless to say, I'm dead in the water here.Any ideas? Anyone else having this problem after insalling osx 10.11 and xcode 7 ?
Hello! I have a MacBook Pro Mid 2014 with OS X 10.10.4 installed and recently was going to update to OS X 10.11 but when I press download developer beta it does launch the app store but it doesnt get me to any page. I tried to manually enter the code, but when I do that it says Your code could not be redeemed at this time!
Yea this is also happening to me but it happens in most betas and will be mostly fixed in official release
Topic:
App & System Services
SubTopic:
Core OS
Tags:
i was seeing this as well. Tried reboots of mac, phone, and watch. Lots of error messages being displayed in console. I reinstalled xcode, installed the watchos profile on my phone, I also switched to a different lightning cable in a different port. After that last one opening Xcode and my phone appeared along with the watch. I'm still seeing RST requests in console from my phone but Xcode is at least acknowledging the devices. It could see the phone on its own in non watch projects.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I have downloaded the Xcode 7 beta, and am in the process of trying to download the documentation. However, for all four docsets, I receive the following error message:Could not download and install Xcode 7 Documentation. Failed to mount file:///Users/<user>/Library/Caches/com.apple.dt.Xcode/Downloads/<docset>.dmg at file:///var/folders/vc/<random string>/T/attached-image-<random string>/: image not recognizedI have tried clearing out ~/Library/Caches/com.apple.dt.Xcode, and restart both Xcode and my machine, but keep encountering this error. How can I resolve this?Thanks.
I haven't gotten a chance to try it in OS X, but iOS 9 on my 5S fails to work with enterprise wi-fi.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
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. (WC