views:

32

answers:

1

The font is very small and hard for some to read so I'd like to make it closer to the font size used on the buttons below it.

A: 

Like Nimrod said you can't do this with a native method. You could check the UIActionSheet subviews, find the good one and change its properties.

BUT

  • This implementation might crash in a futur iOS update
  • Apple may reject your app
  • UIActionSheet is a native element of iPhone GUI and users are familiar with it

SO

You really should don't change the font size used.. If this UIActionSheet title is important you should find another way to show it to the user...

F.Santoni