Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get the assets used in iOS built-in controls?

Is it possible to get the assets (the PNGs) used in some iOS built-in controls like the slider, switch or stepper?

like image 739
pixelfreak Avatar asked Sep 24 '11 19:09

pixelfreak


People also ask

What is assets in iOS?

The Assets. An asset catalog, simply put, is a single folder in Xcode that you use to organize your app's images, icons, colors, and more. Instead of adding individual images to Xcode's file organizer, you add assets neatly organized in a single catalog.

Can anyone build an iOS app?

With powerful developer tools like Swift and Xcode, every business can build amazing apps. Swift is a powerful, open source language that includes modern features developers love. And Xcode includes everything you need to create, build, and debug apps on iPhone, iPad, Mac, Apple Watch, and Apple TV.


2 Answers

You can do this with the UIKit Artwork Extractor which runs in the iOS Simulator and produces a directory with the files on your desktop.

like image 139
omz Avatar answered Sep 28 '22 14:09

omz


You may get them with a jailbreaked iPhone, or using an app that lets you access the iPhone filesystem from you Mac/PC, like DiskAid.

But you can also find PSD files with all the iOS GUI elements on the web, like:

  • http://www.teehanlax.com/blog/iphone-4-gui-psd-retina-display/
  • http://www.teehanlax.com/blog/ipad-gui-psd/

Guess this will be easier...

like image 36
Macmade Avatar answered Sep 28 '22 16:09

Macmade