UIView is an iOS class which is used to display all user interface elements. All UI elements are either subclasses of UIView or are contained within a UIView.
0
votes
1answer
46 views
UIView get error: Expected unqualified-id before '=' token
I declare a UIView in interface:
@property(nonatomic, retain) UIView *textView;
Then synthesize it in implementation
@synthesize textView;
Then call UIView in one of the function:
textView = ...
0
votes
1answer
116 views
How to call UIView method from another ViewController in iOS
I have implemented freehand sketch tutorial from
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_freehand-drawing/.
I need to call its - (void)drawBitmap; - (void)drawBitmapGreen; methods in ...
0
votes
2answers
78 views
Generic way to detect a touch outside UIView frame
I have UIViewController with a custom UIView inside (lets call them VC and button). When button is touched, it's bounds and center changes with animation (it becomes bigger and presents a few options ...
0
votes
1answer
78 views
Pass touch events from UIView on top of UITableView
I'm trying to build a custom table view with a UIView overlaying it. I'm trying to recognize a special gesture on the regular UIView, specifically a pan gesture that takes a double tap to activate it ...
0
votes
1answer
23 views
Load a TableViewController on an animated UIView
Is it possible to load a UITableViewController on a UIView?
I followed this tutorial in animating a UIView, but I want it to load a UITableViewController. The reason why I need to laod a ...
0
votes
1answer
43 views
Can't Add IBAction Button in Container View
In my app, I have a view controller that contains container views embedded in a view. The container views are stacked on top of each other and hidden to start.
viewDidLoad
self.containerOne.hidden ...
0
votes
2answers
63 views
How to get transparency in certain areas of UIView subclass with drawRect override
I've got a UIView subclass with drawRect overridden. The drawing code does not fill the whole area of the view; some of it is meant to be transparent. But when it draws onscreen, what should be ...
0
votes
1answer
48 views
Is there a method called in between touchesBegan and touchesEnded?
I asked this question on the Stack Exchange Game Development Site about how to combine the tap and long hold gesture recognizers, and received the following answer:
The way to deal with this is to ...
0
votes
2answers
33 views
How to know if subViews intersect While moving with UIGesturerescognizer or some otherway?
In my application I have many UIButtons dynamically added to the View and I use below method
to Drag them around the View.
//forDragAction
[btnTarget addTarget:self ...
0
votes
1answer
25 views
Error on creating a KVO on a UIView
I am adding a UIView called bookViewContainer to my view controller, and I want to detect when its scale changes using KVO. Here is my viewDidLoad:
- (void)viewDidLoad
{
[super viewDidLoad];
...
0
votes
1answer
27 views
How to change UIView's height based on UILablel's height inside it?
I have a UIView containing only one UILabel. This UILabel is used to display some information which may be of different length. I calculate height of UILabel using [label.text sizeWithFont:label.font ...
0
votes
2answers
45 views
UIView truncate instead of stretching
I have two small UIViews on top of each other, they have exactly same frame size. I'm trying to change the width of the top UIView so that i can see the bottom UIView AND at the same time I would like ...
1
vote
1answer
78 views
iOS: How to Group UI Items to make transitions in the same View [closed]
I'm starting a new project in iOS and i don't know how to group the UI Elements to hide/add effects/etc and i want to make some transitions between a group of elements to show others elements, idk if ...
0
votes
0answers
71 views
Add UITapGestureRecognizer to UIScrollView
UPDATE
I am creating a UIScrollView in my ViewController. In a Drawing.m class I draw a shape onto the UIScrollView with drawRect. I want the shape that I am drawing onto the ScrollView to be ...
0
votes
2answers
141 views
iOS - Capturing button click on subview added to UITableViewCell
I am trying to use the CollapseClick table control. This all works, but I can't seem to add a button event to the view that is shown when the table cell is expanded.
Looking through the code, it is ...
0
votes
1answer
31 views
Animate without lag?
I am currently using the following code to animate the transition between a view, and when the refreshTheServers method is called while doing so, the whole application freezes, refreshes the servers, ...
1
vote
3answers
87 views
UIScrollView is cut off from UITabBarController
I have a UIScrollView that I place inside of a view (interface builder document .xib/.m/.h), however the lower portion of the UIScrollView is getting clipped and not showing the lower half of itself ...
0
votes
2answers
52 views
init UIView with parameters
I have UIView class that presents view that is created programaticly in a controller.
When creating (initing) the UIView I would like to transfer parameters from the UIViewController, so instance ...
0
votes
1answer
54 views
HTML table data (<td>) screen co-ordinates or frame in UIWebView
I am using HTML to render some offline data in my application. I would be using the same HTML sources for different screen layouts, iPhone, iPad - landscape and portrait orientation. This means that ...
1
vote
1answer
61 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
41 views
UINavigationController not pushing correctly
I am trying to navigate some view controller programatically. I have already add the UINavigationControllerDelegate in the header file...But the view didnt push out when I click the button..Can anyone ...
0
votes
1answer
47 views
Auto resizing in a tab bar is not working
I have a view with a tab bar and a navigation bar. I have a few buttons and textfields in the view. I have some empty space left at the bottom of my view.
While testing on 3.5 inch screen the empty ...
0
votes
2answers
47 views
Twitter pull up functionality
I am looking for some direction towards sample code or a library already out there, but I would like to try and implement the functionality that twitter has when viewing a picture with having a ...
0
votes
1answer
48 views
UIImageView within UIView doesn't respect constraint
I have a UIView of size width: 285 and height: 243. Within that view, I have a UIImageView (it is within that UIView according to Storyboard). That UIImageView has width 283 and height 241 (so that ...
-2
votes
0answers
31 views
Transition between view in iOS [closed]
I would like change my view in my application. I have a "Facebook" menu, and I would like that my page arrived than in Facebook app : when I click on the button, the view change in the app and the ...
0
votes
2answers
46 views
How to make UIToolbar's background transparent?
I want to make my UIToolBar have a transparent background (similar to iBooks) but I'm having no luck with setting the translucent property.
Here's my code:
UIToolbar *toolBar = [[UIToolbar alloc] ...
0
votes
1answer
39 views
What is best practice when NOT using storyboards or nibs?
I've heard Facebook and Google do not use UIStoryboards or nibs because they are difficult to merge – they format all their views programmatically. Are there any resources out there that can provide ...
1
vote
1answer
63 views
iPhone startup orientation (again!)
EIDT: fixed. It looks like it was a Simulator issue.
Thanks to Gabriel
One the simulator I get only this:
--- UIDeviceOrientationDidChangeNotification -> [<UIDevice: 0x7577d30>] {
But on ...
0
votes
1answer
67 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
2answers
47 views
Adding a UILabel's layer to another layer (Separate UIView)
I'm trying to understand why I can't add a UILabel's layer as a sublayer to another layer in a separate UIView object.
- (void)addNumber:(NSInteger)number toLayer:(CALayer *)layer {
UILabel ...
1
vote
1answer
86 views
UIView frame and center not correlated after pan code updates center?
So I've got a stripped down ViewController example that reproduces this behavior which I can't seem to wrap my head around. I'm using a UIPanGestureRecognizer with some code that correctly allows a ...
0
votes
0answers
9 views
PDF Image Content Copy/Select from UIView
I am converting PDF File into Images and storing in local path documents.I am loading this in UIView.From this how can I implement text Selection/Copy.Is it possible.If possible pleaase suggest me how ...
0
votes
0answers
48 views
Using becomeFirstResponder on a new UITextField
I am trying to programmatically set the focus on a new UITextField that I created using becomeFirstResponder. Is there any other way?
-(void) editPlayerName
{
lblPLayerName.visible = FALSE;
...
0
votes
0answers
47 views
DrawRect not displaying shape?
I am currently trying to implement two subclasses at one time.
I am using the UIViewController <CLLocationManagerDelegate> subclass in my viewController to be able to work with the gps. While ...
0
votes
1answer
25 views
Using UIAccelerometer to create a level app
Is there a framework or example code out there that shows how to use UIAccelerometer to control an onscreen level, similar to the bubble level apps?
I realize I need to use it like:
UIAccelerometer ...
0
votes
1answer
27 views
Custom UIView and crashing on accessing properties
So I have a subclassed UIView:
.h
@interface HistogramGraphPanel : UIView
@property (strong, nonatomic) UIView *graphView;
-(id)initWithDataset:(Dataset *)dataset;
@end
.m
...
0
votes
4answers
48 views
iOS/iPhone - passing custom object between views. Object returns always null
I'm trying to pass a custom class between views. I have set a property for that class but when i access the property, the attributes return always null:
firstview.m:
- (void)initNextEventView{
...
0
votes
2answers
56 views
setFrame won't do anything
I have a problem with an app that won't set frames outside -init and -viewWillLayoutSubviews methods. What should happen when one taps the editButton is an animation that will hide the editor view. ...
0
votes
0answers
28 views
Cannot tap any UIVIew in MonkeyTalk tests
We are unable to successfully tap any of our subclassed UIView's that have UITapGestureRecognizers on them. We know that the UIViews have correct AccessibilityLabels on them, as when we run the tests ...
0
votes
1answer
44 views
Interpolation issue after renderInContext:UIGraphicsGetCurrentContext(), iOS
I have a few UIVies butted edge to edge. THe views completely cover the superView. Looks great in display, but when rendered the adjoining edges are visible, that is to sat a line appears between ...
0
votes
1answer
42 views
UIView animateWithDuration artefact (blinking white vertical line on view)
I have simple blinking animation for digits divider in digital clock.
views hierarchy looks like this:
ClockBGView
StartButton
ClockView
When StartButton pressed ClockView become visible (it is ...
0
votes
0answers
24 views
Gesture Data from ViewController to UIView
i would like to change the stoke of an line with a pan gesture. So now i have a IBAction called handlePan with the pan gesture in my ViewController called ViewController.m
#import "ViewController.h"
...
0
votes
0answers
67 views
Drawing an arrow that follows the user's finger and connects two circles
I have many circle views on a background view and I want to be able to tap a circle, drag from there to another circle and have an arrow drawn from the first circle to the next one.
The arrow needs ...
0
votes
1answer
53 views
Custom border for UIView using CALayer and autolayout
I have to draw a custom border for a UIView.
I already have code to do that but it was written before we started using autolayout.
The code basically adds a sublayer of width/height=1.0f
...
0
votes
1answer
37 views
Why add shadow to any layer is too heavy? Using QuartzCore
Why add shadow to any layer is too heavy?
I tried to add a shadow to my UIView and it was VERY heavy on this screen only.
Why is it so heavy? The only solution I find is to add a shadow image in PNG ...
-6
votes
2answers
160 views
Multiple UITableview in Single Viewcontroller
I have a view controller in that i want to show 3 tableviews(because the content and the table properties are different ) .How do i add these delegate methodes for 3 tables in one view controller??
...
0
votes
1answer
44 views
Cant remove subview from a view?
I am trying to remove the indicator subview from a UIView , but it removes both of them and not only the subview .
My views are :
UIView * aView = [[UIView alloc] ...
1
vote
1answer
33 views
Computing UIVIews new width before rotation
I'd like to know the new width my UIViewControllers view will have after a rotation change, but I need this information already in the
- ...
1
vote
1answer
108 views
How to get the gaussian blur effect on a UIView in iOS6
Does anyone know how to achieve a gaussian blur effect on an UIView in iOS6? Similar to twitter's #music app when the filter menu is open. (the background under the menu becomes blurred)
0
votes
3answers
69 views
UIBezierPath does not draw rounded bottom corners
I am trying to make rounded corners for my views and fencing a strange problem.
I use the following code to make rounded corners for my view
bezierPath = [UIBezierPath ...







