Search results for

missing package product

50,262 results found

Post

Replies

Boosts

Views

Activity

Reply to Renaming Kexts?
Thanks for replying. b) provide rootless=0 boot argumentsThat sound promising. So does that mean I can type 'sudo nvram boot-args=rootless=0' any time to turn it off, delete the file, then set it back to 1 again to turn it back on again? Or does sudo not even work with rootless? c) ... Utilities - SecurityThat sounds even easier - like I can go there, turn it off, delete the file and turn it back on.Or am I missing a trick(!)Sorry if these questions sound a bit basic...
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
How does a view controller call functionality of a view (how is the link made?)
I have a view controller, I want to action something on the view by calling a method in the view. But I get the errorfatal error: unexpectedly found nil while unwrapping an Optional valuebecause the view object isnt set. There are a couple of issues here, firstly I assume I am with MVC allowed to control the view from the view controller? Secondarily am I missing some association between the two, maybe on the storyboard? or do I set it up another way...Sorry for the basic question, but sometimes I get a bit lostKind regardsMark
2
0
397
Jun ’15
Reply to iOS 9 Beta battery life
I'm not sure if this is happening for everyone else but I filed a bug report on it. I had done a restore to put iOS 9 on and lost about 30% batter in standby. Home/Lock Screen took about 50% of the power, but Facebook was #2 for background activity even though I have backround app refresh disabled on Facebbook. This might be a possible case of the OS ignoring the BAR settings on some very hungry apps.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Swift Example Code
Just learning Swift and I noticed that Apple's example code on the Swift homepage does not compile in playground! I mean really, am I missing something?https://developer.apple.com/swift/extension String { var banana : String { let shortName = String(dropFirst(characters)) return (self) (self) Bo B(shortName) Banana Fana Fo F(shortName) } } let bananaName = Jimmy.bananaI changed line 03 to: { let shortName = String(dropFirst(self))This seems to work. I tried to find feedback and let them know, but there seems to be no place for developers to provide simple feedback.
4
0
835
Jun ’15
Reply to Low sound
Same problem here. Sorry I cannot help.These little oversights can be expected in Beta form. However, it was annoying to sleep right through my alarm this morning!I guess Apple software engineers are concerned with hearing loss.😕
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Missing Apple Watch Activity Data
I have just installed iOS 9 on my iPhone 6 Plus and when it started up it wiped my apple watch and I had to set it up again.After setting my apple watch up again I am missing the Activity Data for the last 48 hours, but when i look at the activity app on my phone the steps and what not are there but the rings for the last 2 days are both empty
5
0
1.8k
Jun ’15
Reply to iOS 9 Beta battery life
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:
Jun ’15
iOS 9 Error 14
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.
8
0
821
Jun ’15
disk filling up
Since installing El Capitan, my hard disk keeps filling up to the point my system says it will lose messages and emails. I also noticed I could not log out of iCloud. Lastly Activity Monitor is missing.I have done all the normal things ... empty trash, delete downloads, purge unused apps, restarted, set up a new admin user and logged in from there. While doing these things did create more space ... within minutes it is gone again.Any thoughts would be appreciated ....
6
0
762
Jun ’15
Reply to iOS 9 Error 14
yes ends the same way. regardless of how I do it the progress bar always stops at about the 10% mark and itunes pops the same message. Starting to think the installation package is no good but maybe someone else can confirm it worked on a diffrent 1474 model
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Loading an .Obj model file
I created a simple model in an obj and attempted to load it as an Assetlet bundle = NSBundle.mainBundle() let path = bundle.pathForResource(Torus, ofType: obj) var torusModel = MDLAsset(URL: NSURL(string: path!)!)Error message: Could not load data from /Users/jason/Library/Developer/Xcode/DerivedData/MetalDemo-auxpwrdxoklbrpbtkxmrhkecewhb/Build/Products/Debug/Met ... orus.obj
7
0
35k
Jun ’15
In-App Purchase Receipt in wrong format
HiI'm validating my receipts against the appstore, following the Apple's guide The receipt is retrieved from the bundle using the following code:NSURL *receiptURL = [[NSBundle mainBundle] appStoreReceiptURL];NSData *receipt = [NSData dataWithContentsOfURL:receiptURL];NSString *base64Receipt = [receipt base64EncodedStringWithOptions:0];The encoded receipt is a signed binary file, as described in the documentation. However, in some weird cases the receipt is not the expected binary file but an NSDictionary with the form{ pod = 50; purchase-info = ewo...; signature = Apdx...; signing-status = 0;}When I try to validate those receipts against the appstore, the result is always 21002 (The data in the receipt-data property was malformed or missing). Any ideas in why the receipt retrieved from the bundle is in the wrong format?Regards
5
0
5.5k
Jun ’15