Apollo
Apollo

Reputation: 9054

Customizing a UIActionSheet

I'm wondering how I might go about customizing a UIActionSheet like this one:

When you press on the button to bring this view up, it does come up like a UIActionSheet but honestly I'm not quite sure that they aren't using some kind of custom animation with a UIView containing two buttons. Could anybody speak to how I might go about doing this?

enter image description here

Upvotes: 1

Views: 3466

Answers (1)

IronManGill
IronManGill

Reputation: 7226

Well for this you would have to make your custom UIActionsheet . You can do this by either making a UIView and bringing it up by animation (if you want to do no more and take an easy way out) or else you can consult this control also seeing that the interface you want to make is for iOS 7 :- UI7Kit

This control includes all the UI7 control features that you can either add to your project or take an idea and build your own . Hope this helps !! :)

EDIT :

Well you could take a look at these links for making a custom UIActionsheet, they are tutorials like you mentioned..... please have a peek :-

https://www.altamiracorp.com/blog/employee-posts/display-a-custom-uiview-like-a

http://blog.corywiles.com/custom-uiactionsheet-using-core-animation

And there's this great control too using blocks !! :- UIActionsheet With Blocks

Upvotes: 4

Related Questions