An instance of the UIButton class implements a button on the iOS touch screen.
0
votes
1answer
25 views
Change button image for the rest of the app usage
I'm trying to build an app with Twitter integration. When the user clicks on a share button, this button should change its image. This already works but when the user clicks through other views and ...
1
vote
1answer
16 views
How to ensure selected state of subclassed UIButton is drawn even when touch happens fast
I have subclassed UIButton in order to do some custom drawing with CoreGraphics in drawRect:. In order to respond to touch events, I am adding these target/actions:
[self addTarget:self ...
0
votes
0answers
8 views
In Xcode, how to merge 4 images into one new image by clicking a UIButton?
currently I'm doing some Xcode work as our University want us to work for our client, and I'm totally a freshman! The client want an iPad App to achieve a feature, which can show an image which ...
0
votes
2answers
78 views
UIButton's title disappears
I added buttons to xib as normal using iOS 6 SDK and Xcode 4.5.
When I run the app on iOS 6 simulator, there is no problem. But when I run it on the iOS 5.x simulator (or device), the title on the ...
0
votes
3answers
122 views
If statement on UIButton selection
Im not sure why this is not working:
- (IBAction)sliderValueChanged:(UISlider *)sender {
if (_menuRightItem2.selected == YES) {
NSLog(@"yes");
if (sender == self.slider1)
...
0
votes
1answer
12 views
IOS Custom UINavigationBar - barButtonItems receiving touch out of bounds
I implemented this custom NavigationBar Class for my project: Video with Issue
#import "PTTNavigationBar.h"
@implementation PTTNavigationBar
- (id)initWithFrame:(CGRect)frame
{
self = [super ...
-1
votes
6answers
58 views
Check the current image of my UIButton [duplicate]
I want to make a select /deselect using a UIButton. Once I click the button, I want to change the image to p.png and if I click again, I want to change it to d.png. Then, I am trying to check whether ...
-2
votes
6answers
48 views
How to hide button after the button is manual added in Cocoa Touch?
I have added button manually in for loop, after that, how to hide or change the button and hide label?
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = ...
-1
votes
2answers
36 views
Calculating numbers in UITextField
This may be a very easy question for some of you, but I really would appreciate some help. I am trying to divide one UITextField number by another and when you push the button, it displays it in the ...
1
vote
1answer
14 views
open symbol library for iPhone apps
Where do I get simple symbols for headers, footers, buttons and so on I could use in iPhone apps?
I'm surprised to not find open symbol libraries for iPhone programmers. I can't imagine, that most of ...
0
votes
1answer
26 views
XCode Create a Button Toggle that shows one image for On and one for Off with function
I am trying to create a toggle button in XCode that is an On and Off switch for toggling incoming text messages. When the feature is on the image is designed to say ON. I need to set this image ...
0
votes
2answers
22 views
Objective C - basis class of UIButton and UILabel
I am currently creating my own table model. My problem is that i wanna be able to put UILabel as well as UIButtons in the fields. To do so i have to make the field * to something both of them inert ...
-4
votes
1answer
39 views
Objective-C: How to monitor user actions such as load view, click button automatically? [closed]
Is there any way to monitor user activity such as view loaded, button clicked or gestures... automatically?
0
votes
1answer
14 views
Using UIControlEventTouchDragEnter to trigger a button's method… but doesn't work?
I am trying to set up a button using UIControlEventTouchDragEnter as the way to trigger the button's method. Specifically, I have a button, and I want the button's method to be triggered if the user ...
0
votes
2answers
31 views
UIButton titleLabel not displaying
I have seen a bunch of similar questions, but noone got the answer I am looking for. When I use this code to make a UIButton and set it's titleLabel, the UIButton appear, but the titleLabel won't ...
0
votes
6answers
61 views
UIButton does not work when it in UIScrollView
My structure of views:
UITableView
UITableViewCell
UIScrollView
CustomView
UIButton
The problem is UIButton doesn't work when I touch it.
I create it with code:
btn = ...
0
votes
0answers
26 views
UIButton event not called at right time
I have two uibuttons as controls for a game. I will just simplify it so it makes sense out of context
b1 = calls event on touch down, and another on either touch up inside or outside (say setting the ...
-2
votes
0answers
9 views
keyboard-like in 4 pics one word [closed]
how to create a function like the buttons/keyboard that appears in 4 pics one word game? is it by using UIButton? if so, how to determine the value/letter each button has in each level, and how to ...
0
votes
0answers
30 views
iPhone SDK: Buttons and Labels causing UIScrollView to not scroll
I have been dealing with this all day and I simply cant find what the heck is going wrong. I have a scrollview inside a viewcontroller, but when i add a label or button to the view the scroll view ...
-4
votes
0answers
15 views
How do I add a UIAlertView on the press of a button?
I want to create a UIAlertView on the press of a button. In my game I would like to tell the player a little about the level before they proceed and I would like to do it with a UIAlterView. How do I ...
0
votes
1answer
13 views
How save properties of the UIButton
I have two ViewControllers. I insert one UIButton with IBAction on the first ViewController. When i push on the button with set name "PLAY" after pushed i can see "STOP" - it's work great. But when ...
0
votes
3answers
44 views
how to do the same button for three screens?
I have some trouble. So i have AvPlayer and UIButton with play/stop.
Also: I have three UiViewControllers. I need that when I click on the first button on the first UIVIewController on the second ...
-1
votes
1answer
21 views
iOS - UIButton does not appear on UIView
This tweak is supposed to cover the lockscreen with a view (which does happen) and add an "iOS" button to the view (which does not). Here's my code:
#import <UIKit/UIKit.h>
#import ...
0
votes
0answers
16 views
Adding a UIButton to my menu view
Hey folks im working on a little project where im flipping through views using UIView transitions through the access of buttons.
So from my start view, i am able to touch a button and transition to ...
1
vote
1answer
41 views
UIButton press and hold - repeat action until let go
I want to have a certain method run and repeat itself for as long as someones finger is pressed down on a button. I want that method to stop repeating itself when the finger is not on the button ...
0
votes
1answer
46 views
Set target of UIButton to IBAction not working (Objective-C)
Is there any reason the following code for setting the target of a UIButton to an IBAction programmatically shouldn't work?
.h
- (IBAction)googleIt:(id)sender;
.m
UIButton *google = [[UIButton ...
0
votes
0answers
24 views
iOS tabbar centerButton action
I implemented my custom button for a tabbar with this code:
- (void)addCenterButtonWithImage:(UIImage *)buttonImage highlightImage:(UIImage *)highlightImage target:(id)target action:(SEL)action
{
...
0
votes
0answers
12 views
How do I create an IBAction programmatically that connects with multiple UIButtons also created programmatically?
Alright, this is going to be super confusing to try to explain, so please bear with me.
I am creating a bunch of UIButtons on my screen (a 5x6 grid of them) using a method:
-(UIButton ...
0
votes
1answer
12 views
Hiding / disabling UIButton and UIBarButtonItem
Really stumped here. I keep reading posts, nothing works and I get more confused.
I have an info button named "info", and a bar button item named "backnav". Given the differences in the fact that ...
2
votes
4answers
36 views
Load UIButton After UIView Loads
I have a set of buttons displayed in the center of a UIViewController. To give the effect that the buttons are popping/appearing on the view one after the other when the view loads I am trying to ...
0
votes
1answer
14 views
Issue with CGAffineTransformMakeTranslation on UIButton
I have a problem that I can't explain.
I have a viewController with a view.
This view contains a UIbutton and a toolbar.
Because the toolBar is a parameters bar, I don't want it to be present on my ...
2
votes
1answer
47 views
ios: duplicating UIView, with UIButtons in it
I'm trying to understand how to make a duplicate of a uiview that has a set of uibuttons inside it.
Been trying to follow this question/answer but I'm really confused atm:
Make a deep copy of a ...
0
votes
1answer
10 views
Objective C- Whats the normal size of
I wanna make my ISomething app as native as possible and have no idea whats a good size for the Elements. Is there any normal/default/standard size for UIButtons or UILabels i can use? Are there any ...
0
votes
3answers
25 views
UIButton color change after external event
I need a quick way to change the color of an UIButton live (in response to a delegate call) . So the button is drawn with a white background (standard) then when a delegate call comes it needs to ...
1
vote
1answer
41 views
How to set tabbar image color ios button?
i create a 4 button like tabbar , but image show as colored ,i need show images as like tabbar image color (gray) .
Thanks
0
votes
2answers
47 views
How to create iOS UiView that combines multiple buttons next to each other and enables swiping to selecting all of them
Right now i have a few buttons next to each other like this:
User has to press all of them to select the whole row (i have a few rows).
It would be natural to enable them to swipe over them to ...
0
votes
1answer
36 views
Replacing UITabbar items with buttons - Apple Accepts/Rejects
In my app, i am making UITabBarController as root view controller. But i am hiding all the UITabbar items using following code to display custom buttons on the tab bar.
for(UIView *view in ...
-1
votes
0answers
47 views
programmatically defined button list with notification
update 1
When each button is tapped by the user, I want the first letter of the card's suit (S,H,D, or C) and the card's name (A, K, Q, J, or T) to be added to the list of cards, an NSMutableArray ...
0
votes
2answers
20 views
adding buttons in a tableView cell
So I want three buttons in my tableView cell. I've made a custom cell so I customize the buttons in the custom cell once instead of doing it again and again in cellForRowAtIndexPath
But I want to add ...
-1
votes
3answers
29 views
How to create a new textView every time when clicking on the same button?
I would like to create a new uitextview every time when the user click on the same uibutton.
I've tried to write some codes but I can create one uitextview only.
Would be glad if there's some sample ...
0
votes
3answers
33 views
how to Disable a uibutton in another class without navigating to that
My problem is different here i have a big view(classA) and a small view on it(classB), beside this small view there are four buttons which belongs to class A ,I want to disable those buttons.
here is ...
0
votes
3answers
30 views
iOS UIButton Touch Drag Enter not working as expected?
I'm trying to create a button which will trigger an action when the user's touch is brought anywhere into the button (whether they touch down inside, or drag from outside to inside the button). ...
0
votes
1answer
39 views
How to remove gradient effect for UIButton after setting once - iPhone
I am using UIButton as soft key items. So when i click i would like to show color effects for button. I used the below code to do it.
[btn setTitleColor:[UIColor lightGrayColor] ...
1
vote
3answers
30 views
how to add UIImage from a NSMutableArray of images to UIButton using setImage
I have an array of UIImages which I have created like this
UIImage *tButtonImage = [UIImage imageNamed:@"button-measurement.png"];
UIImage *tPButtonImage = [UIImage imageNamed:@"button-parts.png"];
...
0
votes
2answers
48 views
UIButton images look fine in IB but get stretched when displayed on app
I'm developing an Enterprise app for tracking mileage and maintenance for company vehicles. I've added graphic buttons to snazz it up a bit. The buttons look the way they're supposed to look on the ...
0
votes
1answer
42 views
uibuttontypedetaildisclosure custom image
Is it possible to change the image of UIButtonTypeDetailDisclose from the default one to something which is more interesting. However, notice that I'm asking for button, rather for one type of ...
0
votes
4answers
60 views
Align two different text on single line in iphone sdk
I have a UILabel and a UIButton and the text which is changing dynamic except UILabel, I want to show them as a single label and should be center align on single line but both work differently as I ...
3
votes
3answers
49 views
How to make a custom button with highlighted
I create a custom button, because I want a gradient button. so I use this code to implement it.
@implementation CustomButton
- (id)initWithFrame:(CGRect)frame
{
if((self = [super ...
0
votes
3answers
37 views
Subview with UIButton isn't clickable
Here's the code I'm working with:
UIButton *mainButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[mainButton setImage:[UIImage imageNamed:@"CircleShape.png"] ...
0
votes
2answers
37 views
Draw the frame on the button edge
I have some buttons. I need to mark some of them. I would like to make it by frames.
Can I realize it? Can I draw the frame on the buttons edge?



