Marko Zadravec
Marko Zadravec

Reputation: 8740

How to get xcode default images

I would like to found iOS default images (like checkmark, info icon,...) so that I can use them elsewhere and not only in cell accessory field or buttons.

I guess, that xcode must have some folder with it's resources on disk, so I would need to access that, or some other way how can I use those images inside UIImageView.

Upvotes: 1

Views: 1364

Answers (3)

Andrew Stoddart
Andrew Stoddart

Reputation: 516

SF Symbols now provides access to a lot of these system images (and lots more besides).

Upvotes: 1

Paulw11
Paulw11

Reputation: 115041

The imagery is in iOS. It is not generally accessible. You need to provide your own imagery.

Upvotes: 1

André Slotta
André Slotta

Reputation: 14040

those images are included in the SDKs. there are many "icon extractor" projects out there. maybe that's what you are looking for:

https://github.com/devcxm/iOS-Images-Extractor

https://github.com/0xced/iOS-Artwork-Extractor

https://github.com/Marxon13/iOS-Asset-Extractor

not sure about possible legal issues though...

Upvotes: 1

Related Questions