Search results for

missing package product

51,078 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 6.3.2 and 10.11 Beta 2 - Any chance of fixing?
In case anyone's curious, this is the error trying to install a simulator in Xcode 6.3.2:2015-06-23 20:18:27.600 Xcode[5641:182759] [MT] DVTDownloadable: Error Domain=PKInstallErrorDomain Code=100 Could not download and install iOS 8.2 Simulator. Authorization is required to install the packages. UserInfo=0x7fdeadab4660 {NSLocalizedDescription=Could not download and install iOS 8.2 Simulator. Authorization is required to install the packages.}
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to where is el capitan beta 2?
EDIT:There may be a better solution to this problem (If it works for you then it's certainly preferable to having to continually having to update from links):sudo softwareupdate --set-catalog https://swscan.apple.com/content/catalogs/others/index-10.11seed-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gzThe above command should set the update catalog correctly (something that doesn't seem to be happening automatically for some).If that doesn't work then you can still download the DP2 updates as a .pkg file direct from Apple's CDN:http://swcdn.apple.com/content/downloads/07/10/031-25506/wy6k3cd22jejq1j83kmahud7zwbaxid2z6/OSXUpd10.11.pkgfor the main DP2http://swcdn.apple.com/content/downloads/15/54/031-25507/rjki32of9yi5zydmfv8o9v04h7s3b3vw0c/RecoveryHDUpdate.pkgfor the recovery HD updateAND (previously missing from my post)http://swcdn.apple.com/content/downloads/07/10/031-25506/wy6k3cd22jejq1j83kmahud7zwbaxid2z6/FirmwareUpdate.pkgfor the firmware update package
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Protocol extensions with generics
Speaking of which, one might wonder why this shouldn't be possible:extension Dictionary where Value == Int { // Error: Same-type requirement makes generic parameter 'Value' non-generic. var weightedRandomElement: Key! { var selectedItem: Key? var selectedWeight: Value = 0 // ... return selectedItem } }I mean, this would be an extension applying only to some specific Dictionaries. We are using the new ability to further constrain extensions to generic types (as mentioned in the beta 2 release notes). As far as I can see, this is something that would be useful and should be allowed. Or am i missing some existing way in which you can make an extension to Dictionaries with Value == Int (and Key: Hashable)?So in order to make a version that is an extension to Dictionary, I had to do this:protocol ItemWeightType: Comparable, IntegerLiteralConvertible, IntegerArithmeticType { init(_: UInt32) } extension Int: ItemWeightType {} extension Dictionary where Value: ItemWeightType { var weightedRandomElement: Key!
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
App data not transferred with iCloud backup
I backed up my iPhone that was running beta 1 to iCloud, then reset my iPhone to the beta 2 build, and chose to restore from iCloud backup. Data transferred and apps downloaded but app data did not apparently, as I have had to sign into all my apps again that have never made me sign in again after restoring from backup. I'm wondering what other info was lost besides credentials. Did you encounter the same problem, think if I tried it again it would transfer that data?
1
0
564
Jun ’15
Reply to El capitan Beta 2
Thanks Max108,Will this pkg work to upgrade Yosemite->El Cap Beta 2? My issue is that El Cap Beta 1 would not install on my system, so i can't just upgrade it.So i am hoping to go straight from Yosemite to El Cap Beta 2.I did something similar with Yosemite Betas, where the first beta wouldn't work on my system, but Beta2+ did work.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Haptics still not working on beta 2
Successfully instaled the beta 2 on my Apple Watch and was pleased to see the haptics finally working again. However, after about 5 minutes I stopped getting notifications, just as in beta 1. Did the whole restart, restore, unpair, re-pair, and it still happens. It's really a pain. It basically renders the watch useless because notifications still go to the watch (without any sound or haptics) which means they don't go to the iPhone, meaning I miss every notification unless I'm staring at either my watch or my phone. I'd really like to not have to go another two weeks until beta 3 for my watch to become usable again.Unless someone knows of a way to make sure notifications make vibrate/sound on the iPhone even while the watch is on?
3
0
778
Jun ’15
ProRes 4444 XQ in AVFoundation
4444 XQ has been around for a while, and AVF can decompress it, but will it be able to encode it also at some point? I tried passing the fourcc (ap4x) into a VTCompressionSessionCreate, but it doesn't work, even in the latest beta 10.11 sdk. Can this be enabled, or am I missing something?
5
0
1.4k
Jun ’15
Value Types Style Question
This is more of a style question than a technical one. I am experimenting with value types by building a simple poker card system.I have a 'Deck' struct which consists of two UInt64 (one for the cards in the deck, and the other for the discard) and has various functions for drawing cards, discarding, shuffling, etc.... There is, of course, also a 'Card' struct with sub-enums for rank and suit.The issue arose when I made a 'Hand' struct (which is basically just an array of Card structs + helper functions). As I was adding functions to discard a hand, I found I had a few options:discardHand(hand:Hand) on the 'Deck' - This discards the hand, but the hand struct which is passed in will still contain the cards afterwards, which feels a bit weird to me (perhaps I am just too used to reference types). Could this lead to errors because someone expects the hand to be empty afterwards?discardHand(inout hand:Hand) on the 'Deck' - This discards the hand and updates the hand struct, but is called 'discardHand(&hand)'
5
0
430
Jun ’15