The bar of icons in an iOS app.
-4
votes
0answers
15 views
UItoolbarItem button default width in iphone and ipad [on hold]
Hi, I want to know the default height and width of toolbar item
button. How could I achieve it.
0
votes
1answer
8 views
hidding uinavigationcontroller toolbar
How come doing
[self.navigationController setToolbarHidden:NO];
works (shows the toolbar)
but setting on the view directly
self.navigationController.toolbar.hidden = NO;
doesn't?
2
votes
2answers
31 views
UIToolbar gradient fix
I am using UIToolbar in my project for this lock screen. Everything is fine except the gradient on the UIToolbar is very short. I mean its height is not equal. I have attached the screen shot. I want ...
0
votes
0answers
9 views
Reload UIToolbar in UINavigationController without reloading view
I am using a UINavigationController and setting the toolbar items by using the method setToolbarItems of my topmost UIViewController. This works fine the first time when the user goes to the screen or ...
0
votes
2answers
31 views
Set background image of UIBarButtonItem programmatically changes its size
I've been able to have a custom UIBarButtonItem with an embedded uibutton through story board. It's the map button.
see parameters on this screenshot, I had to use background property instead of ...
0
votes
1answer
24 views
display page number on UIToolbar at bottom
If i have to display page number as title on uitoolbar at the bottom like this
_toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 960, self.view.bounds.size.width, 45)];
_title1 = ...
0
votes
2answers
82 views
How to change the title color of UIToolbar buttons?
Is there any easy method to change the title color of UIToolBar button title like what we are using for UIBarButtonItem:
[[UIBarButtonItem appearance]
setTitleTextAttributes:
...
0
votes
2answers
41 views
UIToolbar not showing but it's below the self.view
I make a toolbar in my view but I can not see it.
I use Reveal.app to check out the structure of the view
I find out the toolbar exists and it's
below the view so I can not see it. How can I fix ...
2
votes
2answers
50 views
iOS why has moved ToolBar gap to keyboard
I figured out how to move my toolbar with button and text field with the appearing keyboard:
- (void) liftMainViewWhenKeybordAppears:(NSNotification*)aNotification
{
NSDictionary* userInfo = ...
0
votes
1answer
21 views
UIWebView, SearchBar, and TabBar not resizing correctly after the view is reloaded in landscape?
I have a tabbar application that shows a web browser in one tab. When you rotate the view everything works fine but when you switch to another tab and then go back to that tab in landscape, the view ...
0
votes
2answers
32 views
iOS push BottomBar and ToolBar simultaneously
I have an UITableView with TabBar (BottomBar) and ToolBar. When selecting a cell the detailsView is push to the stack. The detailsView does not have a TabBar nor a ToolBar. This is done within the ...
1
vote
1answer
59 views
Best practice for sizing UIButtons with autolayout in code?
I'm using autolayout in code not IB to add a custom button to a UIToolbar. My question is about best practice. Do I use the following code to add, set and size the button within the toolbar:
(1)
...
0
votes
3answers
46 views
Why won't this UIToolBar appear?
Here is the init method of the root view controller of my navigation controller that I am trying to display the toolbar on:
-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle ...
0
votes
2answers
27 views
UISegmentedControl in UIButtonBarItem
I have a UISegmentedControl that I want to appear in an UIToolbar. It appears, but clicking it does not call the method that it should. Am I missing anything?
Code:
-(void)setupToolbars{
NSArray ...
0
votes
0answers
45 views
iPhone is there a scroll to toggle fullscreen control like Google+ app?
I'm thinking of ways to offer the users of my app an immersive fullscreen experience, while still offering an ability to view tools/controls. It appears that Google + app has a good model for dealing ...