Anthony Glyadchenko
Anthony Glyadchenko

Reputation: 3622

How do I make a button in the iPhone SDK that will look like the UIActionSheet buttons?

In some iPhone apps, I've seen buttons that look similar to UIActionSheet buttons (example: End Call button in Phone.app).

I would like one in a UIView that I've made.

Is there a way to do this?

Upvotes: 2

Views: 276

Answers (1)

Stefan Arentz
Stefan Arentz

Reputation: 34945

It simply a UIButton with a scaled image attacked to it. Check out Apple's UICatalog example code, it has one of those buttons in blue. It is a simple technique.

Upvotes: 3

Related Questions