Tagged Questions
The rightbarbuttonitem tag has no wiki summary.
2
votes
3answers
787 views
rightBarButtonItem info button, no space to the right
I have a UIViewController set up to display an info-button on the right in its UINavigationItem like this:
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[infoButton ...
2
votes
1answer
939 views
want to add UInavigationBar rightBarButton like 'Now Playing' button of ipod, which doesnot disappears between view Transitions
i am new to iphone dev, i want to add a button (sign out) which remains fixed on the navigation bar's right side for every view.i.e. even when tabs of TabBar are tapped, the Sign Out button should ...
2
votes
2answers
3k views
iPhone flip right button (like iTunes)
I'm trying to flip between two views. That's easy, the code is below, but I also want to simultaneously flip the button used to perform the flip.
You can see this behavior in the iPod application ...
0
votes
2answers
71 views
UINavigationBar troubles
In my app, i'm using a custom UINavigationBar and custom UIBarButtonItems in a NavigationController. My (custom) NavigationBar looks fine, but when I want to place my own backBarButtonItem and ...
0
votes
1answer
50 views
How to access or call an action in to a function
I have the right navigation bar button action,I have set an action for it like the following:
-(IBAction)save:(id)sender
{
//Code for saving entered data
UITextField *fieldOne = [self.fields ...
0
votes
3answers
311 views
“self.navigationItem.rightBarButtonItem” Not working
I have the following code taken straight from the NavBar sample code from Apple. I put this in the viewDidLoad method for a view in my app that is being presented modally, and it wont work.
...
0
votes
1answer
143 views
Can't add a rightBarButtonItem to a UIViewController
I have the next code:
- (id) initWith...{
if (self == [super initWithNibName:@"EmptyViewController"
bundle:[NSBundle mainBundle]]){
...
back_btn = [[UIBarButtonItem alloc] ...
0
votes
0answers
138 views
Problem with replacing rightBarButtonItem by UIActivityIndicatorView on button press
I want to change the rightBarButtonItem of a UINavigationBar by a UIActivityIndicator when a user taps this button. The purpose being that at this point a data request is send to some remote server ...
0
votes
1answer
50 views
rightbarbutton disappear on tabbar application / ipad
I've a problem ... and for the moment don't know how work it out...
The application has a tabbar view, all the ViewController on the TabBar has the same structure, with a leftBarButton with back ...
0
votes
1answer
35 views
bug in my BarButton
I have a bug in my code and I cannot seem to find it! I've created a button called addButton programatically and set its selector to add—but the app crashes in the simulator every time the button is ...
0
votes
0answers
61 views
Making uibarbuttonitems fade
I have a navigation bar that is set up and controlled completely with code. So it does not show up in IB. I have a button appear by "self.navigationitem.rightbarbutton = myButton;"
An I make it go ...
0
votes
1answer
134 views
UISegmentedControl only shows first item on device but works in Simulator
I have searched around an figured out how to add a UISegmentedControl item to the navigation bar button item (right bar button). It works fine in the simulator but when I try it on the device, only ...
0
votes
1answer
94 views
problem to give colors for BarButtonItem
i have a ToolBar in my view controller.i need to show one icon in right side of the ToolBar.
so i added a BarButton item and displayed icon image there.but the is a problem with icon color.it ...
0
votes
1answer
527 views
problem with adding right bar button to the navbar
HI Everyone,
I have a navigation bar with a navigation controller. In one of my views, I want to add a custom right bar button item. I am trying to do so with the following code, but its not ...
0
votes
2answers
346 views
Customizing self.editButtonItem with Check and UnCheck- HELP
So with regards to the rightBarButtonItem . I have
self.navigationItem.rightBarButtonItem = self.editButtonItem;
When I press Edit, I get animation and a vertical stripe on the left side of each ...
0
votes
1answer
62 views
Limit rows that editbuttonitem affects
In my iPad app I'm using Apple's standard split view template. The master view has a table that's populated by a plist file and my table is split into three grouped sections. In my viewDidLoad method ...
0
votes
2answers
464 views
Problem with NavigationItem RightBarButtonItem after last update
After the last update (4.0.0) I am having an issue and was wondering of this is a bug and is there a fix.
As you can see from the code below, I am creating a NavigationItem.RightBarButtonItem and ...
0
votes
2answers
113 views
Check if rightBarButtonItem exists or not
Is there a way to check if the current view already has a right bar button, something like:
if (FOO_CODE.rightBarButtonItem != nil) {
// don't create one
} else {
// create one
}
0
votes
2answers
368 views
How do I hide/show the right button in the Navigation Bar
I need to hide the right button in the Navigation Bar, then unhide it after the user selects some options.
Unfortunately, the following doesn't work:
NO GOOD: ...
0
votes
1answer
682 views
Delegate method called for rightBarButtonItem of UIBarButtonItem
What is the delegate method called when rightBarButtonItem of UIBarButtonItem is tapped? I want to implement a specific action there.
0
votes
1answer
244 views
rightBarButtonItem.enabled removes my custom layer from the uinavigationbar
I've customized my Custom UINavigationBar to show a custom image (actually I crossfade between lots of images on a NSTimer) :
- (void) displayImage:(EGOImageView*)anImageView {
CABasicAnimation ...
0
votes
1answer
423 views
Adding Segment controller to place that already has one
I have menu button that is being put in the Navigation controller on every page in the rightBarButtonItem (customer wishes) from a my BaseViewController (all other classes inherit from this).
I ...
0
votes
1answer
1k views
how to trigger an event of navigationitem rightBarButtonItem programmatically?
i created an navigationitem rightBarButtonItem in the following code and I would like to trigger its event programmatically ( just like click the bar button ). search everywhere but can't find how to ...
0
votes
2answers
2k views
Custom UIToolbar within UINavigationController's rightBarButtonItem disappears when popping back to view
EDIT 2:
I have now fixed this issue. I was setting a custom background image for my UINavigationBar like so:
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, ...
0
votes
3answers
754 views
Replace UIBarButtonItem with UIActivityIndicatorView not working
I want to replace refresh button with activity indicator when the user press the refresh button and after the tableview is refreshed, i want to change it back to refresh button. But when I press the ...
0
votes
1answer
1k views
when editButtonItem clicked, no red delete icon shows
Hi guys:
I am writing an IPhone IM chat window now.
You know if the nagviationItem.rightBarItem in an UITableviewController is set to editButtonItem, you click the edit button then a red delete icon ...
0
votes
1answer
339 views
How do I make the rightBarButtonItem STAY when a view controller is pushed on?
When I push a view onto my view controller
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
AnotherViewController *anotherViewController =
...