Search results for

missing package product

50,261 results found

Post

Replies

Boosts

Views

Activity

Reply to In WatchOS 2, there's no way to position views arbitrarily (possibly resulting in overlap) and no way to have views with custom rendering (e.g., by overriding a draw method). Why?
The API isn't quite as native as a lot of us were hoping, but there are ways around some of the limitations. For example custom drawing is possible by drawing an image and loading it into an image control, which is sufficient for a lot of situations. Arbitrary positioning of views is another matter with the flow approach to layout, but you might be able to do something with a bit of creativity. For games I'd imagine it's more a case of what can I do with these limitations rather than how do I do what I would like to do. The video on layout and animations would probably be a good start to see what is possible:https://developer.apple.com/videos/wwdc/2015/?id=216As someone who spent months on a version 1 watch app I was actually quite happy to see how version 2 apps work. I was worried that I would have to rewrite a lot of code if the layout scheme was changed, but the way Apple have designed it means that this is hopefully not the case. I'd imagine that a future version of watchOS will allow arbitrary positioni
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Restore vs. Buy IAP product again
Hello,I have 1 product id as Non-renewable subscription in ITunes connect.My product should have a validity of 1 year.After 1 year it should be possible to buy the same product (identifier) again.How can I differentiate between - restore the product and- after 12 month buy it again?Thank you in advance
0
0
215
Jun ’15
.pkg still says 'unidentified developer' after Productsign
Hi all, anyone with experience in signing .pkg files for distribution OUTSIDE of the App Store?I'm aware this isn't the right forum, but I couldn't see an appropriate section -sorry in advance.Set up the required private key and installer certificates through the Apple Dev site.Created a .pkg with the WhiteBox Packages software.Note: the content is NOT a standard .app file - it is a set of 3 plug-in files: .component, .vst, and .vst3, which are each moved into their required location upon install.(During this stage, I used the 'identifier' provided on the Apple Dev site: e.g com.companyname.productname)Built the .pkg with no issues.Signed the .pkg using the terminal command:productsign --sign developer-ID-number /path-to-file/xyz.pkg /path-to-new-file/xyz_signed.pkgThis was successful, and the correct information comes up when using the pkgutil --check-signature command.The signed .pkg works perfectly when not quarantined, and behaves as expected.However,
2
0
808
Jun ’15
Receive ANCS message from iPad
I would like to write an iOS app (run in my iPad) to receive my notification message from my iphone, is it possible? func centralManagerDidUpdateState(central: CBCentralManager!) { switch central.state { case CBCentralManagerState.PoweredOn: let services = [7905F431-B5CE-4E99-A40F-4B1E122D00D0] self.centralManager.scanForPeripheralsWithServices(services, options: nil) default: break } }I try to scan service from my ipad using the above code but nothing return, is it because the iphone and ipad already paired because they are using the same appleID?any hints I could achieve this?I am new to iOS programming, can anyone help me with this? Should the app in iPad act as peripheral or central? I'm a bit loss
1
0
873
Jun ’15
Apple ID as Mac Login (run away, run away)
Today seems to be an issue with the Apple ID system related to Apple ID passwords. It all started when the developer web site told me my password expired... (what?)I encountered a strange you must reset your password, it has expired message on what I **thought** was developer.apple.com. I dutifully tried to use the link and it took me to My Apple ID where I tried to login and it failed. I got up to get a cup of coffee, then came back. Somehow I managed to try a couple more times and fail, then I decided to go to start over, typed inhttp://appleid.apple.com and try again. This time my login (from my keychain) worked! Interestingly enough, once logged in, there was no notification that I had to change my password. Chalking it up to another Apple product SNAFU, I went on.Then I got to thinking What if I was just scammed and someone captured my password?! I looked into my history. Nothing nafarious there, but it is easy enough to remove history items with JavaScript from a web site so...Better safe than
2
0
769
Jun ’15
Error when opening Blender 2.74 .obj, .stl or .ply export files in Xcode7 beta
Dear all,I'm hoping someone will be able to advise me on how to resolve this error. I have tried numerous times to open files exported from Blender 2.74 in .obj, .stl or .ply formats, but get the same error message each time: 'The document testCube.obj could not be opened. Unknown or missing file'.Below is a description of how I generate the error, starting with the default cube object in Blender 2.74 and ending with Xcode7 beta:Open Blender. The 3D viewport contains the default cube object.In the Properties Window, click on the Materials buttonIn the Diffuse panel, set the colors to Red: 0.5, Green: 1.0, Blue: 1.0Save the file as 'testCube' to a folder on my desktopSelect File > Export > Wavefront(.obj)In the resulting Export window, click 'Export OBJ' without making any adjustments to the default settings in the 'Export OBJ' panel on the left hand side.Two files are saved to my folder: testCube.obj and testCube.mtlFirst approach to opening the file in Xcode7: Two-finger-click on testCube.obj,
2
0
1.8k
Jun ’15
Bundle Identifier Change Core Data Lost
Hello,I changed a project from Objective-C to Swift and created a whole new project when I did this. I have an app in the AppStore and wanted to send an update instead of releasing a new app. I understand that my Bundle Identifier needs to be the same when updating an app. When preparing the app for release, I changed my Bundle Identifier to match my app in the AppStore - since I started with a new project - and in the process my Core Data file seems to be missing. If I change my Bundle Identifier how do I keep access to Core Data?Take care,Jon
3
0
3.9k
Jun ’15
StatusBarStyle
iOS 9 has[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];as depreciated and hasUse -[UIViewController preferredStatusBarStyle]as the replacement code, but I can't find any such code in documentation.Anyone see what I'm missing?
1
0
9.1k
Jun ’15
Problems with Protocol-Oriented Design
Hi,I watched the WWDC talk on Protocol-Oriented Design, but it didn't really address the many problems I've had dealing with protocols in Swift. They mostly relate to generic protocols, which I was surprised to see barely touched on at all.You can't store generic protocolsLet's try something like this:struct MergedCollection<T> { var data : [CollectionType] //where CollectionType.Generator.Element==T init<C:CollectionType where C.Generator.Element==T>( collections: [C] ) { data = collections } }If you try this code, you'll get an error because you can't just store something in terms of CollectionType. You can store an Array<T>, a Set<T>, or some other concrete implementation of CollectionType, but you can't store something typed to a generic protocol. It isn't possible to write data structures which store and operate only in terms of protocols. You very quickly need to jump down to concrete types (structs, classes).Note: You could technically store these by downcasting to Any, but sinc
5
0
1.3k
Jun ’15
code recommenders
Hi,this is a suggestion for apple engineers for a improvement in code completion.I'm comming from the java world.So I'm accostumed to the luxury of great code completion and code recomenders for years.What I like to have in XCode, too, is something like this:http://www.eclipse.org/recommenders/this is a nice example of code recommenders in action:https://www.youtube.com/watch?v=T716BCrlMRQvery good talk in German:https://www.youtube.com/watch?v=abQSHWsygsYFor me, this is a great productivity boost.Best regards,Gerd
0
0
210
Jun ’15
iOS9 restore from backup - lost app data?
As fate would have it, after installing iOS9 beta on my iPad2 the iPad died. Not related, I'm sure.So, good excuse to get an iPad Air 2. I did an install of iOS9 beta on it, then reloaded from the backup, and everything SEEMED to go fine. Except that most apps have lost all their saved data. Poor kids, but almost all the game progress/etc was lost. This is the trouble with trying to keep on the leading edge but not being able to affford a dedicated test device. Oh well, I know, no pity party, but it does seem to reveal a problem... Why did the apps restore but their data is not there?Not using iCloud backup, just backup to iTunes, but I know the last backup from the iPad2 was a good and complete backup.I even have tried several restores from the backup after the fact, not a complete reload, just the restore from the backup, but yet it doesn't restore any of the progress/etc in the apps.Very frustrating. 😟
2
0
527
Jun ’15
CoreBluetooth. retrieveConnectedPeripherals... - all gone?
In iOS9 SDK all method related to retrieveConnectedPeripherals is missing.retrievePeripherals, retrievePeripheralsWithIdentifiers, retrieveConnectedPeripherals, retrieveConnectedPeripheralsWithServices, centralManager:didRetrievePeripherals:, centralManager:didRetrieveConnectedPeripherals: - all gone. Not even turn to NS_DEPRECATED, it's just not there anymore.No one BLE app from store will work in iOS9.It's just a some kind mistake or I miss something?
0
0
1k
Jun ’15
Reply to Will generics still be useful now that there are protocol extensions?
Multiple inheritance isn't supported in ObjC or Swift, but that doesn't mean it's impossible in OOP; C++ has supported multiple inheritance for a LONG time.Anyhow, you missed my point.Generics allow you to constrain to specific, homogeneous types.func foo<T>(items: [T]) { ... }Items must be an array made up of items of T.func foo(items: [T]) { ... }If T is a protocol, then items can be an array made up of anything that conforms to T. This was talked about in the talk when walking through the historical issues with OOP.Another example where the combination of protocol extensions and a generic type system really compliment one another:extension Equatable where Self : Drawable { func isEqualTo(other: Drawable) -> Bool { guard let o = other as? Self else { return false } return self == o } }That protocol extension is not possible to write without generics.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15