开发者

Can we have a email button on left side of navigation bar of iphone application?

My iphone application has email functionality. I want to place the email button on the left hand side of the navig开发者_开发技巧ation bar of the application. The application do not have "back" link, so i have space on left side of the navigation bar, to add email button.

I want to know, whether it is allowed by apple? as it is not the default behavior of the button at that location.


That's allowed, no problem.


self.navigationItem.leftBarButtonItem=[[UIBarButtonItem alloc] initWithTitle:@"Email" style:UIBarButtonItemStyleBordered target:self action:@selector(createMail:)];

-(void)createMail:(id)sender
{
    //code here for mail functionallity.
}

Use this to solve your problem

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜