Hello friends,
This code is to make custom right bar button in UINavigation bar.
it helped me to make custom right bar button in UINavigation bar, Hope this will help you too.
UIButton *homeButton = [UIButton buttonWithType:UIButtonTypeCustom];
UIImage *homeBtnImage = [UIImage imageNamed:@"icon_1.png"] ;
[homeButton setImage:homeBtnImage forState:UIControlStateNormal];
[homeButton addTarget:self action:@selector(setting) forControlEvents:UIControlEventTouchUpInside];
homeButton.frame = CGRectMake(0, 0, 50, 30);
UIBarButtonItem *homeBtn = [[UIBarButtonItem alloc] initWithCustomView:homeButton] ;
self.navigationItem.rightBarButtonItem = homeBtn;
0 Comment(s)