Where to download old iphone SDKs? [closed] - iphone

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Not immediately seeing where to download legacy versions of the iphone SDKs. I can get the latest 3.1.3 release and 3.2 betas off the Apple developer site, but a lot of example code I'm finding online was written for 2.0-2.2 and it is still relevant code, but I can't build them because I don't have the 2.0-2.2 SDK. Thanks!

Well what I'm doing is using the 3.1.3 SDK, then setting the target to 2.x or 3.x depending on my needs. I don't have XCode open but look under Project or Build menu items.
You can also set build it using the following instructions: iPhone Development Guide - "Specifying the Buildtime Environment"

They're tough to find on the iPhone Developer section of ADC, here's a good listing of all the old SDKs download URLs.
You need to be an official iPhone developer, and login first to download these:
http://iphonesdkdev.blogspot.com/2010/04/old-versions-of-iphone-sdk.html

Related

Process class not working in swift 3 [duplicate]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I've an open source project (gdal) that I want to compile and run as part of an iOS app. I had been expecting to use NSTask but I see now that it was removed in iOS 3.0. I've also seen elsewhere that running external applications, though this would be a resource in my app's bundle, is not allowed.
Has anyone else found a way to run commandline tools within their iOS applications?
It wasn't removed in 3.0, it was never there. There is no way to run separate processes on the iPhone. GDAL appears to be under an MIT style license and has a library interface, so directly linking it into an iPhone app shouldn't have any legal or technical issues.
NSTask is available in ios 4, ios 3 and possibly all of them. To use NStask I had to copy the NStask header file from my mac to my project folder. Also Apple will most likely not allow an app that uses NStask in the appstore. Cydia would probably be the best place to distribute your app
Just reminder:
NSTask will not work under sandbox environment (you will get "deny process-fork"). So put your application into /Applications

Need help to create a Photo sharing Windows Universal app, which API should I use to change photo's effect [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to create a UWP app like Instagram, so I have to find a way to change Photo's effect easily, does anyone have recommended library to make it works in UWP? Should I use the underlying API?
Lumia Imaging SDK should be what you need, it gives us access to a powerful library of exciting image-manipulation tools for Windows and Windows Phone devices. Designed from the ground up with performance and a low-memory footprint in mind, the Imaging SDK 3.0 makes editing high-resolution images swift and engaging. See this page: https://dev.windows.com/en-us/featured/lumia
Imaging SDK documentation: https://msdn.microsoft.com/en-us/library/mt598502.aspx
The Sample projects can be found in Lumia Imaging SDK Git repository: https://github.com/Microsoft/Lumia-Imaging-SDK#samples

Where to get previous versions of iOS disk image? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I just became a member of iOS Developer Program and I'm reading the document iOS Developer Program User Guide. It says:
Download the iOS Disk Image (.dmg) from the iOS Dev Center for the Apple device you are using.
Well, in my Xcode Organizer, I can see two versions: 4.2.1(8C148) and 4.3.2(8H7). Suppose I want to test my application on previous version of iOS, say 4.0 or 3.x. Where can I find/download the iOS Disk Image(firmware) as the document says?
Thanks.
Apple has made it difficult to downgrade firmwares on iOS devices. Once you upgrade past 4.2.x (I think), you may not be able to go back. Nonetheless, you might go here for older firmwares.
you mean the firmware's IPSW ? Google has some good results:
http://www.iphoneheat.com/2009/03/download-iphone-firmware-files-all-at-one-place/

What percentage of iPhone users using each iOS version [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for up-to-date report of iOS versions deployment in percentage.
Something like Chitikia Report but up-to-date.
This info is extremely important for taking a decision of what iOS version to deploy my App...
Any idea where to find that? Is Apple publish such reports for its registered developers?
Many Thanks!
Back from the dead :)
Finally Apple provides this information on this page.
Example screenshot:
You might struggle to get these stats. As I understand it the latest Developer SDK T&C's prevent analytics software from collecting this sort of data. I know Flurry no longer collects
the iOS version (its just displayed as 'Unidentified' now).
I've never seen any data published by Apple to developers either.

iOS Private API Documentation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there a web site or project documenting private APIs for the iPhone SDK?
here are searchable archives from iPhone OS 2.2.1 to iOS 9.2
https://github.com/nst/iOS-Runtime-Headers
Most likely. Just use the command line application class-dump to view the private headers. Note that your app will be rejected from the App Store for linking to private frameworks if you link at compile. It is easy enough to see that you are linking the private frameworks by running otool on your binary if linked at compile.
These are the compilable headers generated by class-dump-z, a iOS class dumper:
http://github.com/kennytm/iphone-private-frameworks
You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper