1

Can we edit the PopOverAlert.... Is it possible to customise the UIAlertView. Also I want to make the UIAlertView transparent.

IronManGill
  • 7,222
  • 2
  • 31
  • 52
goku
  • 169
  • 1
  • 13
  • which type of Alertview you need exactly? – Hiren Sep 06 '12 at 05:59
  • alertview which can show the background page. that is AlertView must be transparent – goku Sep 06 '12 at 06:25
  • means alertview design is as it is just you need to transparent alertview. right? – Hiren Sep 06 '12 at 06:26
  • Yes have you check my answer's first link of tutsplus? – Hiren Sep 06 '12 at 06:40
  • Actually I have done this coding in a button action..** alert=[[UIAlertView alloc]initWithTitle:@"error" message:@"qwwqreqrgvsdfhbsb" delegate:self cancelButtonTitle:@"dismiss"otherButtonTitles:Nil, nil]; [alert show]; UILabel *theTitle = [alert valueForKey:@"_titleLabel"]; [theTitle setTextColor:[UIColor redColor]]; UILabel *theBody = [ alert valueForKey:@"_bodyTextLabel"]; [theBody setTextColor:[UIColor redColor]]; **now I want to know what will be the code to make the view of alert transparent? – goku Sep 06 '12 at 06:46
  • yes but I had created AlertView as like above.And i couldn't understand where i have to start. to set the alert view as transparent – goku Sep 06 '12 at 06:51

2 Answers2

0

Yes you can customize the UIAlertView ... Depends On what you actually want to do ... Use these links Changing the background color of a UIAlertView? and how can I have a totally transparent UIAlertView?

Community
  • 1
  • 1
IronManGill
  • 7,222
  • 2
  • 31
  • 52
  • But these links cant satisfy me.I want to make my alertview transparent.Is it possible? can anyone specify me any code. – goku Sep 06 '12 at 06:22
  • @goku Dont make a UIAlertView ... Make a UIView , and customize it in such a way using animations such that it looks like a UIAlertView... – IronManGill Sep 06 '12 at 06:25