Tagged Questions
-1
votes
1answer
20 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
13 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 ...
2
votes
1answer
44 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
2answers
39 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
2answers
43 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
31 views
Changing size of UIButton while using Autolayout?
I'm pretty new to ios. I'm working on a project which is going to frequently use a certain UIView class throughout the application. This class is simply an image that does some transparency stuff ...
1
vote
1answer
49 views
Use a nib as a table section header with nib class
I want to create a section header that loads a nib file and sets that as the header UIView. This nib file will also have an associated class where the outlets and actions are connected to so I want to ...
0
votes
1answer
62 views
ios uibutton doesnt refresh after uiview refreshed
i have created a login view controller with a nib file as the following;
//loginVC is a local variable in a local method of root view controller, this method called when the user login button pressed
...
0
votes
0answers
14 views
How to adjust the UILabel accordingly if a UIButton is present [duplicate]
As the title suggests, I need to adjust the code accordingly of UILabel accordingly if the UIButton exists on that part of the screen.
For example:
I have a screen like this:
But I need it to be ...
0
votes
0answers
42 views
allow button to respond to touch and not pass through to tableview when in a navigation controller or tabbar
I have a subclass of a UIView that loads its contents from a xib. I take that view and insert it on the bottom of a UIViewController and it acts as a pop up menu - kind of like an action sheet.
...
0
votes
3answers
131 views
How to connect multiple buttons in a storyboard to a single action?
I'm currently using Xcode 4.6 and I'm simply wondering how to select multiple buttons across different UIViews, but under a single view controller. CMD clicking doesn't seem to work. I need this ...
0
votes
2answers
54 views
What is the right way to build a UIButton composed of other UIViews?
I'm trying to create a customized UIButton. It has a (changing) image, some informational text, and of course more standard things like a title and so on. I'm using interface builder and storyboards ...
0
votes
1answer
72 views
Button in uiview not clickable
Pls help.. i have this button in my subclass, when i addsubview it in my uiview, it cant be clicked, any idea?..thanks
the button in my subclass:
- (void)configureDate{
ChangeButton=[UIButton ...
0
votes
0answers
32 views
Dealing with origins and sizes for different elements 4in display and 3.5in
I am trying to confirm what would be the best/most efficient way to display buttons on the 4inch (iphone5) and 3.5(other iphones).
This is my current code:
CGRect screen = [[UIScreen mainScreen] ...
0
votes
2answers
46 views
UIView border cover sub-view?
I have a UIView which includes a UIButton which is partially on UIView. I have a problem when I draw a border on my UIView. Please have a look at my screenshot:
You can see the border is above the ...
0
votes
3answers
72 views
Darken view as if disabled
How do you darken a view as if it were disabled/highlighted, preferably without using any additional views?
By view I mean a UIView, with all its children. I want to achieve the same effect of a ...
0
votes
1answer
16 views
How do I place a button in a UIImage for determining different selections?
I have a UIView with a UIScrollView. I then added a gesture recognizer programmatically to the scrollView for left or right swipe.
I created 3 UIImageViews with a different UIImage each, say 1, 2 ...
0
votes
1answer
61 views
Autoresize is not working
I added Default-568h@2x.png image to existing iphone4 code for iphone5 and i used autoresizingMask. But i settted frame for iphone4 is 320,480 using initWithFrame. Also i setframe for ...
1
vote
1answer
37 views
How to perform performSegueWithIdentfier from within UIView
Ok so I have a UIButton embedded into a UIImageView which forms part of a UIView.
The button's selector calls a method which should run:
[self performSegueWithIdentifier:@"SegueToMoreInfo"];
...
1
vote
1answer
157 views
UIButtons in Custom UIView not responding (again)
I have a custom UIView with some buttons as subviews. I read a lot of threads about my problem but the solutions which were posted didn't work for me.
If I set the frame of one of the buttons to some ...
0
votes
0answers
52 views
UiButton create in IB and use twice or more with change image
I have a button that I created in IB
In some time I output this button on screen
Then when I click on it, I hide it
[UIView animateWithDuration:0.2f
delay:0
...
0
votes
1answer
257 views
Using UIViewAnimationTransitionFlipFromRight to flip over a UIButton when pressed and show a new button on “the other side”
EDITED For MOXY.
I have an array of buttons with an image on top and array of buttons whose views are background colors. When i click on a button i want to retrieve that button index and use that ...
0
votes
3answers
101 views
Adding a uiview that contions some uibuttons not works correctly iphone monotouch
I'm using this codes to add 3 UIButtons in a UIView and then add them to my screen.
UIView buttonsContainerView = new UIView (new Rectangle (0,0,(int) this.View .Frame .Width ,40));
...
0
votes
3answers
79 views
How to add UIButtons programatically using for loop in iOS?
I want to create 15 UIButtons progaramatically using for loop. I want to arrange buttons like matrix with rows and colums, say 3 rows and 5 columns. The buttons height is 50 and width is 80. I can set ...
1
vote
0answers
79 views
Access getter methods on a superclass via lldb - Expected getter method not found on object
I have this property:
@property (retain, nonatomic) IBOutlet UIButton *dismissKeyboardButton;
and a break point after this line:
self.dismissKeyboardButton.hidden = NO;
Code has halted after ...
2
votes
2answers
134 views
Is there anyway to create a UITableView with one universal footer?
I'm trying to create a UITableView with multiple sections. Each section has it's own header, but I am trying to make a universal footer for the entire table view that stays in one position...
Is this ...
0
votes
1answer
76 views
Determine if view is hidden or not and change button state programmatically
I have three views and three buttons each button toggles the view (hidden = yes/no)
- (IBAction)switchOne:(id)sender {
[_firstPage setHidden:NO];
[_secondPage setHidden:YES];
...
-2
votes
2answers
35 views
Multiple UIButtons shown vertically with different UIButton names
I have 3 different buttons, and I am using for loop to display it in my UIView. The problem is, there is only one button shown.
float yButton = 50.0;
for (int i = 0; i < 2; i++) {
UIButton ...
0
votes
1answer
57 views
Displaying image when a button is tapped ?
I have 3 buttons representing 3 different images. An image will be displayed whenever its button is tapped. My question is, how to use if() and NSArray/NSMutableDictionary/UIButton tag or other method ...
1
vote
2answers
34 views
How to create Small Customized UIView in a Main View when I press UIButton?
Dear Friend How can i create small Customized UIView in a main View when I Click New/Add View Button and i need to give text for label that should br stored dynamically i.e when ever i open the ...
4
votes
1answer
169 views
Drag UIButton from one view to another by using touch method
Hello all,
I am using "Touch methods" first time so facing certain issue.
In my app, there are 2 subviews in mainview.I am trying to implement drag and drop of uibutton from one view to another view. ...
0
votes
2answers
345 views
Subclassing UIButton
I would like to know if you think subclassing UIButton would be a good idea in my situation and if so how exactly to go about doing it?
So the situation is that I have three custom buttons in my ...
0
votes
1answer
109 views
Subclassing UIView/UIViewController
I need a lot of custom buttons in my app. At the moment I'm using storyboard to define these buttons on every controller that I need. However, I feel that since I need them throughout my app, I'm ...
1
vote
2answers
103 views
How to make the SubView of a UIView, placed out of UIView frame, interactive?
I have added a UIView to a View of a View Controller. Say:
CGRect paneRect = {10.0f, 10.0f, 300.0f, 50.0f};
UIView *pane = [[UIView alloc] initWithFrame:paneRect];
pane.backgroundColor = [UIColor ...
0
votes
0answers
66 views
how to set the priority response of SubView in UIView
in ViewController:
- (void)viewDidLoad
{
[super viewDidLoad];
NSArray *array = [[NSArray alloc]initWithObjects:@"title1",@"title2",@"title3", nil];
self.scrollTabControl = ...
3
votes
2answers
94 views
How to force a UIButton to always be on top
I have a UIButton and a UIView that animates, sliding down when the UIButton is pressed. The problem is that the UIView obscures the UIButton. I'd like the UIButton to always remain on top.
I tried ...
0
votes
1answer
104 views
iPhone UIButton action is not working
I create UIView and then I add UIButton as subview with action, but this action is never called.
Does anybody know why?
Here is my code:
- (void)viewDidLoad{
UIView *roundResultView = [[UIView ...
0
votes
1answer
52 views
Buttons on UIView semitransparent are not visible
I have a UIView with some parts semi-transparent (alpha <1.0) and other opaque. I want to put buttons opaque as subview and I noticed that the parts they become translucent buttons also, while in ...
0
votes
2answers
137 views
Disable user interaction on tabBar
I am displaying an image right after the app didFinishLaunchingWithOptions, the app consists in a tab bar, and in the first view i have some buttons.
The user can only continue to use the app after he ...
2
votes
4answers
102 views
How to make UIButton Draggeable?
I need to drag and drop the uibutton in subview only.
Actually i am taking subview in main view. UIbutton is add in subview. When i drag the button it moves on both view but i need to drag button only ...
0
votes
1answer
47 views
Dynamically 'reflect' database value to the UIView elements
I have an UIScrollView which contains series of UIView. Each UIView contains UIImageView and several UIButtons. These UIViews represent 'book' and their data are stored in sqlite database.
...
0
votes
1answer
59 views
Looking for iOS styled fastforward and rewind button images
I am building an app that will play music and in need of a little assistance. I understand how to implement everything programming wise, however, I have been unsuccessful finding fastforward and ...
0
votes
2answers
567 views
UIButton inside UIView doesn't respond to touch events
I've put a UIButton inside a custom UIView and the button is not receiving any touch events (it doesn't get into the highlighted state, so my problem is not about being unable to wire up a touch ...
0
votes
2answers
102 views
Different Images on Single view for Multiple buttons
In my UIView am having 4 buttons Like animals,birds,nature``fruits. While clicking the other view shows the set of selected category images. Instead of putting 4 views for 4 buttons i want to perform ...
2
votes
3answers
420 views
UIButton does not work in uiscrollView
I have a scrollView that has a UIView as subview. This has as UIView subview a UIButton. Only the scrollView is connected to the outlet, the rest is all in code. The button does not respond to ...
2
votes
2answers
79 views
Passing action to one uiview to another in IOS
I have created a UIView called ImageShowcase which has a UIScrollView and then i am adding UIButton inherited class call ImageShowcaseCell. Its working fine. One thing i am puzzled about is what is ...
0
votes
1answer
213 views
UIButton not receiving touch events
I have a view controller in which I've programmatically created a view with several buttons in it to act as a menu of sorts. This view is initialzed with coordinates off screen (y origin of -100 for ...
0
votes
4answers
442 views
How to set button fot navigationItem titleView?
I want to programmatically set button for navigationItem.titleView.
I tried with following code but with no success;
UIBarButtonItem *navigationTitleButton = [[UIBarButtonItem alloc] ...
0
votes
1answer
131 views
How to add a button on the top of default keyboard in iPhone?
I saw many iPhone apps contains some custom buttons over the default keyboard to perform some actions. See this image..
Here the arrow button was used to resign the keyboard.
My doubts:
Should I ...
0
votes
2answers
179 views
Resize UIView and change subview position simultaneously
I have placed out a UIView with a UIButton as a subview in a ViewController in Interface Builder. I also have a UITextField where I have a action witch is triggered every time I type something in it. ...

