3
  1. Will the apple allow us to use our own customized alertView ?
  2. I find this TSAlertView is not compatible with ios 5(ARC) . I just remove all the 'auto release ' 'retain' from the .m file. now it does't work. when show it. it always print 'TSAlertViewController dealloc' . Do you know why ?
  3. I just want a Alert View that I can change the background image , button image or someting...
Vitaly S.
  • 2,389
  • 26
  • 40
lostin2010
  • 123
  • 2
  • 10

2 Answers2

3

You don't need to convert TSAlertView to use it in ARC-enabled project. You can disable ARC only for TSAlertView. There is the instruction: How can I disable ARC for a single file in a project?

I've just successfully used TSAlertView in my ARC-enabled project.

Community
  • 1
  • 1
Vitaly S.
  • 2,389
  • 26
  • 40
0
  1. You can use your own custom view instead of an alert view, yes.
  2. ARC is about more than just removing retains and release. But, there is a convertor to help you and it is available in Xcode's Refector Menu.
  3. See the answer to 1.
Abizern
  • 146,289
  • 39
  • 203
  • 257