how to change uibutton title at runtime in objective c?

Posted by Sarah on Stack Overflow See other posts from Stack Overflow or by Sarah
Published on 2011-01-12T04:47:42Z Indexed on 2011/01/12 4:54 UTC
Read the original article Hit count: 155

Filed under:
|
|

Hello,

I know this question is asked many a times,and i am also implementing the same funda for chanding the title of the uibutton i guess.

Let me clarify my problem first. I have one uibutton named btnType, on clicking of what one picker pops up and after selecting one value,i am hitting done button to hide the picker and at the same time i am changing the the title of the uibutton with code

[btnType setTitle:btnTitle forState:UIControlEventTouchUpInside];
[btnType setTitleColor:[UIColor redColor] forState:UIControlEventAllEvents];

But with my surpriaze,it is not changed and application crashes with signal EXC_BAD_ACCESS. I am not getting where i am making mistake.I have allocated memory to the btnType at viewdidLoad. Also I am using

-(IBAction)pressAddType
{
    toolBar.hidden = FALSE;
    dateTypePicker.hidden = FALSE;
}

event on pressing the button to open the picker. Also i would like to mention that i have made connection with IB with event TouchUpInside for pressAddType.

Any guesses? I will be grateful if you could help me. Thanks.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c