0

Is there any way to made UIActivity to display custom images? By default it created metal-style-icons. Is there any way to disable it?

Secondly, can I use UIActivity instead of UIActionSheet? Are there any guidelines when it should (not) be used?

msmialko
  • 1,439
  • 2
  • 20
  • 35
  • UIActivity /// ?? uiactivityindicator ?? – iPatel Mar 11 '13 at 13:19
  • @iPatel [`UIActivity`](http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIActivity_Class/Reference/Reference.html) are the activities in the iOS 6 social share dialog. – rckoenes Mar 11 '13 at 13:22

1 Answers1

4

Custom UIActivity only displays grayscale images. Yes, you can use UIActivityViewController instead of UIActionSheet, but you have to create every UIActivity for that by yourself. Here is the nice way to create your own UIActivity: How can I create a custom UIActivity and UIActivityProvider in iOS 6?

When and how to use UIActivity depends on yourself. Good Luck!

Community
  • 1
  • 1
Fahri Azimov
  • 11,470
  • 2
  • 21
  • 29