Tagged Questions
An instance of the UIButton class implements a button on the iOS touch screen.
26
votes
9answers
17k views
How do you add multi-line text to a UIButton?
I have the following code...
UILabel *buttonLabel = [[UILabel alloc] initWithFrame:targetButton.bounds];
buttonLabel.text = @"Long text string";
[targetButton addSubview:buttonLabel];
[targetButton ...
25
votes
4answers
14k views
Keeping a UIButton selected after a touch
After my user clicks a button, I'd like that button to stay pushed during the time that I perform a network operation. When the network operation is complete, I want the button to return to its ...
20
votes
1answer
2k views
UIButton remove all target-actions
I have added multiple target-action-forControlEvents: to a UIButton. I'd like to remove all of these in one go without deallocating anything. I will then set new targets.
Is this possible and how do ...
20
votes
9answers
30k views
iPhone SDK: Creating a big, red UIButton
Using the iPhone SDK, how would I go about creating a red "delete" button similar to the one used when deleting contacts on the iPhone?
Screenshot (I'm trying to duplicate the red button at the ...
17
votes
3answers
3k views
UIButton: set image for selected-highlighted state
I set an images for button's states Normal,Highlighted and Selected, but when the button in selected state and I press/highlight it I didn't see my highlighted image but just grayed picture.
Is it ...
16
votes
3answers
9k views
UIButton: how to center an image and a text using imageEdgeInsets and titleEdgeInsets?
If I put only an image in a button and set the imageEdgeInsets more close to the top, the image stays centered and all works as expected:
[button setImage:image forState:UIControlStateNormal];
...
16
votes
4answers
11k views
Minimum sensible button size on iPhone
I'm designing an iPhone app that features a rather large set of onscreen rounded rect buttons. Given finger-based touchscreen UI, what do you think would be the smallest sensible button size? I need ...
16
votes
3answers
25k views
Setting an image for a UIButton in code
How do you set the image for a UIButton in code?
I have this:
UIButton *btnTwo = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btnTwo.frame = CGRectMake(40, 140, 240, 30);
[btnTwo ...
14
votes
1answer
46k views
iPhone Dev - Create UIButton Manually
I'm learning how to develop on the iPhone, I bought a book called Beginning iPhone 3 development Exploring the SDK. After I bit I decided to ditch Interface Builder. I still design all my views in IB, ...
13
votes
4answers
8k views
UIButton of type UIButtonTypeCustom will not display Title (iPhone)
I must have overlooked something completely obvious?? but my button displays its image and size correctly, but I simply can't get the Title to show up.
I did a really simple test, the Title does not ...
13
votes
4answers
24k views
is it possible to update UIButton title/text programmatically?
I have a UIButton, that when pressed, brings up a new view where the user can change some settings. When the view is dismissed, I'd like to update the title/text of the UIButton to reflect the new ...
13
votes
7answers
22k views
iPhone UIScrollview with UIButtons - how to recreate springboard?
I'm trying to create a springboard-like interface within my app. I'm trying to use UIButtons added to a UIScrollView. The problem I'm running in to is with the buttons not passing any touches to the ...
12
votes
1answer
5k views
iPhone UIButton with UISwitch functionality
Is there either a way to implement UISwitch with custom graphics for the switch-states?
Or as an alternative the other way round, an UIButton with UISwitch functionality?
12
votes
3answers
4k views
How to add 2 buttons into the uinavigationbar on the right side without IB?
how can i add 2 buttons into the uinavivationbar without IB?
The 2 buttons should be align on the right side of the uinavigationbar.
I know how i can add one button, but two??
Alex
11
votes
6answers
27k views
Is it even possible to change a UIButtons background color?
This one has me stumped.
Is it possible at all to change the background color of a UIButton in Cocoa for iPhone.
I've tried setting the background color but it only changes the corners. ...
11
votes
3answers
20k views
Set UIButton title label font size programmatically
I need to set the font size of the title label of a UIButton programmatically.
10
votes
2answers
2k views
EXC_BAD_ACCESS with IBACTION
I have read a lot about this issue but mine still seems to be different somehow.
So from what I understood, EXC_BAD_ACCESS occurs with memory management problems.
The thing is, mine does not seem (! ...
9
votes
3answers
1k views
Objective C: How can you rotate text for UIButton and UILabel?
Objective C: How can you rotate text for UIButton and UILabel? 90 degrees, 180 degrees
Thanks
9
votes
2answers
5k views
Gesture recognizer and button actions
I have a view hierarchy that looks something like this:
UIView (A)
UIView > UIImageView
UIView > UIView (B)
UIView > UIView (B) > Rounded Rect Button
UIView > UIView (B) > ...
9
votes
7answers
13k views
How do I scale a UIButton's imageView?
Hey guys! I create a UIButton instance(named "button") with a image use [UIButton setImage:forState:] function, the button.frame is larger than the image's size.
Now I want to scale this button's ...
9
votes
4answers
12k views
uibutton title alignment and multiline support
How do I set the title of a UIButton to be left aligned and, how can I show multiple lines of text in a UIButton?
thanks and regards,
raju.
9
votes
5answers
16k views
How can I change the default color of the button on iPhone?
How can I change the default color of the button on iPhone?
9
votes
6answers
5k views
UIButton: Making the hit area larger than the default hit area
I have a question dealing with UIButton and it's hit area. I am using the Info Dark button in interface builder, but I am finding that the hit area is not large enough for some people's fingers.
Is ...
8
votes
2answers
3k views
how to programmatically fake a touch event to a UIButton?
I'm writing some unit tests and, because of the nature of this particular app, it's important that I get as high up the UI chain as possible. So, what I'd like to do is programmatically trigger a ...
8
votes
1answer
3k views
Having trouble getting UIView sizeToFit to do anything meaningful
When I add a subview to a UIView, or when I resize an existing subview, I would expect [view sizeToFit] and [view sizeThatFits] to reflect that change. However, my experience is that sizeToFit does ...
8
votes
4answers
5k views
How to set the title as left alignment in the UIButton
I need to dispaly the email address from left side of a UIButton, But it is getting in the center.
Is there any way to set the alignment to the left side of a UIButton.
UIButton* emailBtn = ...
8
votes
1answer
10k views
How can I change UIButton title color?
I create a button programmatically
button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
...
8
votes
4answers
10k views
How to override -drawrect in UIButton subclass?
HI. I need to write some text over a custom button. So I subclassed UIButton. In -drawrect, I write the text I need. The problem is that the text ends up under the button. After I write my text, ...
7
votes
3answers
93 views
about UIAlert jumps to one xib
i have some three xib files, a b c
there is a button on b,and it will show an alert when click it,the code is
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Warning"
message:@"You ...
7
votes
6answers
2k views
A simple way to put a UIImage in a UIButton
I have a UIButton in my iPhone app. I set its size to 100x100.
I have an image that is 400x200 that I wish to display in the button.
The button STILL needs to stay at 100x100... and I want the ...
7
votes
4answers
1k views
UIButton in UITableViewCell
I have a UIButton with an image inside of a UITableViewCell. When the cell is being highlight, the button is also entering the highlighted state (i.e. a darker shade of the image), regardless of ...
7
votes
5answers
2k views
iPhone - How to determine in which cell a button was pressed in a custom UITableViewCell
I currently have a UITableView that is populated with a custom UITableViewCell that is in a separate nib. In the cell, there are two buttons that are wired to actions in the custom cell class. When I ...
7
votes
5answers
10k views
Iphone UIButton not working in nested UIViews
This is so damn simple im sure! Im missing something and im exhausted from trying to fix it. hopefully someone can help.
The Button in CharacterView.m works but the button nested down in ...
7
votes
7answers
9k views
How do I create a grid of icons like the iPhone home screen?
How should I go about creating a UI similar to the Springboard (home screen) on the iPhone? I'd like a grid of evenly spaced buttons with images where I can respond to the button tap.
Is the UITable ...
6
votes
5answers
741 views
iOS UIButton how does one make beautiful buttons like this?
Is this a UIButton? If it is, how is the background red done? Obviously, it is not
red UIColor? Is there same tool or utility included with Xcode to allow making buttons
like this?
6
votes
3answers
877 views
UITableViewCell expand on click
First in a simple view normal UITableView will be display with some custom control on cells.
Whenever I will click custom button on cell.. it will expand to some extent you can say 40 height more... ...
6
votes
3answers
1k views
Is it possible to differentiate between a long press and a tap on a button?
Can we call different actions / delegates in response to the two different events of
A tap on a UIButton
A tap-and-hold on a UIButton
?
6
votes
2answers
3k views
iPhone SDK: UIButton with both image and text possible?
I have a button of size width 200 and height 270.I want text and image on same button.Not as background image and on that text. Instead of this i want text to display with height 120 and image of ...
6
votes
3answers
360 views
Creating iOS UI components from NUnit test code
I'm trying to write a unit test for some code that programmatically creates UIButtons, but when I call this code from the test, I get a NullReferenceException. Stepping through in the debugger, it ...
6
votes
3answers
17k views
Custom UIButton for Iphone
I have an view in my App which has a number of buttons based on the number of items returned by the server. So if the server returns say 10 items, there should be 10 buttons and clicking on each ...
6
votes
5answers
14k views
UIButton in UITableView cell like “Delete Event”
I'd like to add a button to a table cell. The "Delete Event" in the calendar app inspired me... (a similar case is "Share Contact" in contacts)
As of now there's
- (UITableViewCell ...
6
votes
2answers
7k views
Way to make a UIButton continuously fire during a press-and-hold situation?
You know how Mario just keeps running to the right when you press and hold the right-button on the D-Pad? In the same manner, I want my UIButton to continuously fire its action for the duration that ...
5
votes
2answers
77 views
X button with circle in iPhone Controls
You know that grey circle with white "X" in it in textboxes for iPhone controls that is used to delete the current line of text, is that available as an icon somewhere? I'd like to put that icon ...
5
votes
2answers
700 views
Creating a UIImage from a UIColor to use as a background image for UIButton
I'm creating a colored image like this:
CGRect rect = CGRectMake(0, 0, 1, 1);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
...
5
votes
1answer
443 views
Changing the button text color when selected
I have a custom button and I am setting the different image when it is highlighted. Now, I want to change the color of the text on the button when button is highlighted. Is it possible to do this?
5
votes
2answers
1k views
How to cancel UIGestureRecognizer if subview's button pressed
I am struggling to get the behaviour I would like from the gesture recognisers, specifically cancelling certain gestures if others have fired.
I have a scrollView set to paging and multiple subviews ...
5
votes
1answer
506 views
How to add a simple button to the middle of a navigation bar?
i found a lot of topics around placing buttons on navigation bar but none showed me how to place a button at the center of the bar.
I found an example with a segmented control but i don't need that.
...
5
votes
2answers
1k views
How to open camera while I click the uibutton in iPhone?
I am trying to open the camera when I click the uibutton in iPhone app. I want to store the captured image in a location that I specify.
Please could you help me with this?
5
votes
3answers
2k views
5
votes
4answers
2k views
UIButton block equivalent to addTarget:action:forControlEvents: method?
I looked around, but couldn't find this on the internet, nor anywhere in the Apple docs, so I'm guessing it doesn't exist.
But is there a iOS4 blocks equivalent API to:
[button addTarget:self ...