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.
3
votes
6answers
1k views
Should views be created using NIBs or code in iPhone?
Are there any performance, development drawbacks or advantages when designing views using Interface Builder?
13
votes
3answers
2k views
How to preserve image transparency when using colorWithPatternImage:
I have an image prepared with transparency, like this:
With two UIviews, I configure the background colors as so:
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];
...
11
votes
3answers
7k views
How can I get the pinstripe background to show?
I'd like to use the pinstripe background that shows up in the Settings app and many other iPhone apps behind table views. Is is already included in some graphics library? How can I make it show up in ...
8
votes
1answer
3k views
Apply blur to UIView
Right Now I am Building an iPhone app that requires blurring an entire UIView. How can I achieve this?? I very lost right now. I have seen this framework. But I don't think that works with UIView. Any ...
7
votes
2answers
7k views
UIView hidden property…is there more to it?
Coming from ActionScript, I would set Sprites to visible=false in order to keep them from being calculated in things like layout, and to ensure they would not respond to events.
In iOS development, ...
7
votes
3answers
12k views
iPhone: How to set UIViewController frame?
I have a root UIViewController that I am adding other UIViewController's as subviews. Currently each of the subviews are too low down (covering up my custom build tabbar). When I try to so something ...
5
votes
3answers
2k views
How Do I Save What I have Drawn In A CGContext
I have drawn into a CGContext of a UIView.
- (void)drawRect:(CGRect)rect {
[self drawInContext:UIGraphicsGetCurrentContext()]
}
I would like to save what I have drawn to a png file.
Is ...
4
votes
1answer
2k views
Set text for a textfield in UIWebView
I have a UIWebView and I want to set one of it's text field to certain text. Is that even possible? If so, how can I do that?
Thanks
4
votes
3answers
2k views
iPhone SDK - How to disable the volume indicator view if the hardware buttons are pressed?
Is there a way to prevent the volume indicator view form showing if you press the volume up/down hardware buttons?
It's needed for a demo app only. So the method don't need to be App Store safe.
3
votes
2answers
2k views
Capturing zoomed preview view in AVFoundation
I am working with zoom functionality in AVFoundation camera, i have implemented zoom by scaling the view that has AVCaptureVideoPreviewLayer.
Now i want to capture the zoomed image.
here is ...
14
votes
3answers
5k views
UIView “suck” animation
I'd like to use the UIView "sucking" transition (view is "sucked" into a point) referenced here:
http://iphonedevwiki.net/index.php/UIViewAnimationState#Using_suckEffect
The method above, however, ...
12
votes
2answers
4k views
iPhone — the input parameter to UIView's sizeThatFits method
The signature of this method is:
- (CGSize)sizeThatFits:(CGSize)size
I don't understand what the size parameter is used for. Apple's documentation states that it is "The current size of the ...
8
votes
7answers
25k views
How to set background image of a view?
I am a beginner at Obj-C/Cocoa Touch/iPhone OS.
I wish to have a background for my app with different images everytime the the view is called.
Say I have 10 images. I 've used it like this:
...
7
votes
2answers
8k views
Why doesn't UIView.exclusiveTouch work?
In one of my iPhone projects, I have three views that you can move around by touching and dragging. However, I want to stop the user from moving two views at the same time, by using two fingers. I ...
4
votes
2answers
2k views
How to prevent UIView from being resized to fit ScrollView height (autoresizing disabled)?
I'm writing a PDF reader using vfr-reader library. To display two pages in landscape i'm rendering each page into its own view, then add these two views to a container view, then add container view to ...
3
votes
2answers
3k views
how can I get the scale factor of a UIImageView who's mode is AspectFit?
how can I get the scale factor of a UIImageView who's mode is AspectFit?
That is, I have a UIImageView with mode AspectFit. The image (square) is scaled to my UIImageView frame which is fine.
If I ...
2
votes
3answers
2k views
UIView. How do I constrain scaling to one dimension only
I have an instance of UIScrollview containing an instance of UIView. The UIView is just a container for a horizonal array of UIImageView instances. - Zooming is provided by UIScrollView and ...
1
vote
1answer
15k views
How to implement views to the pagecontrol
I'm about to create an App.
It should have 3 main pages. So I thougt i realize this with a PageControl.
I crated 3 Views and now i stuck on the implementation of this PageControl.
Has anyone a good ...
1
vote
2answers
2k views
Improving Finger Painting Performance
Simple Painting:
Fingering the iPhone screen paints temporary graphics to a UIView. These temporary graphics are erased after a touch ends, and are then stored into an underlying UIView.
The process ...
17
votes
3answers
8k views
Can UIView be copied?
Simply using this way
UIView* view2 = [view1 copy]; //view1 existed
This will cause simulator can not launch this app.
Try retain,
UIView* view2 = [view1 retain]; //view1 existed
//modify view2 ...
14
votes
1answer
2k views
UIView. Why Does A Subviews Outside its Parent's Extent Not Receive Touches?
I have a simple - trivial - UIView parent/child hierarchy. One parent (UIView). One child (UIButton). The parents bounds are smaller then it's child's bounds so that a portion of the child extends ...
8
votes
5answers
8k views
iphone uiview - resize frame to fit subviews
Shouldn't there be a way to resize the frame of a UIView after you've added subviews so that the frame is the size needed to enclose all the subviews? If your subviews are added dynamically how can ...
6
votes
2answers
8k views
UIView — “user interaction enabled” false on parent but true on child?
It appears that userInteractionEnabled=NO on a parent view will prevent user interaction on all subviews. Is this correct? Is there any way around this?
6
votes
2answers
7k views
Rotate UIView iPhone
Hy,
I am working on a puzzle game and I need to rotate the puzzle pieces to 90 degrees angle on every double tap.
I have tried to do did using two different ways. First method is this one:
[UIView ...
4
votes
1answer
2k views
Masking a UIView
I use the following code all the time in my view controller:
UIView *view = [[CustomView alloc] init];
UIView *mask = [[CustomMask alloc] init];
[view layer].mask =[mask layer];
and it masks the ...
2
votes
1answer
1k views
iOS: Movie player view doesn't rotate
I want to rotate my movie player view explicitly (not using Autorotation delegate). I wrote following code for that and also put comments in it. The parent view of movie player does rotate but not ...
2
votes
4answers
3k views
How to have a handler to repeat UIView animateWithDuration?
I'm using UIView class method animateWithDuration for repeating my view animation. How can I have a handler that could be used to stop this animation later? For example, repeated animation starts in ...
2
votes
2answers
3k views
Rating stars for the iphone
I have been looking for a 5-Star rating control for a while now and have not found a solid solution.
This question:
Anyone know whether there is a 5-star rating component on iPhone?
Provided a ...
2
votes
2answers
7k views
Loading custom UIView in UIViewController's main view
I have subclassed UIView and created a NIB that controls the main logic for my application.
Hoping the view will scale nicely, I want to use it for both the iPhone and iPad versions of the app.
On ...
2
votes
3answers
3k views
Subclassed UIAlertView not drawn correctly in iOS 4.2
I've subclassed an UIAlertView as follow:
@interface NarrationAlertView : UIAlertView {
UIImage * backgroundImage; //The image I want as custom background
UILabel * textualNarrationView; ...
1
vote
2answers
752 views
Convert image to gray scale
In my application i am having one UIImageView, there is one UIView of clear background color on top of this UIImageView.I am using UIBezierPath to free hand drawing on this UIView so that it appears ...
1
vote
3answers
546 views
How do I create a smoothly resizable circular UIView?
I'm trying to create a UIView which shows a semitransparent circle with an opaque border inside its bounds. I want to be able to change the bounds in two ways - inside a -[UIView ...
1
vote
2answers
3k views
resize UIView when showing the keyboard for iphone, how to? [duplicate]
I will show you an example with the well known whatsapp
When you touch inside the text the keyboard pops up , so I have to move or shift all that bar up and resize the view to half, so I can still ...
1
vote
3answers
2k views
name of UIView that was touched
How can I get the name of the [touch view] in the touchesbegan event.
So if it were UIView *aaaaaview I would get aaaaaview as the return;
Thank You,
nonono
1
vote
2answers
11k views
Add buttons under a tableview
I'm trying to create a view programmatically. The result that i want to have is a scroll view with a tableview inside. And under this table view i want to add some buttons
I don't know exactly how to ...
0
votes
2answers
464 views
How to crop an UITextView
I would like to have two UITextViews, one in the background and one in the front. Is there any possibility to crop 50% of the one in the foreground so that you can see 50% of the one in the ...
6
votes
2answers
1k views
Is it ok to create a UIView on a background thread?
I know UIView are not thread safe so i cant add a view on a background thread, to work around this is it ok to create a UIView on a background thread then add it on the main thread?
Note: the reason ...
5
votes
3answers
2k views
Changing UIView when applicationWillEnterForeground fires
I am looking for a way to grab the current view being shown to the user when they send the application to the background.
The situation is that I have provided options in my settings bundle for look ...
5
votes
3answers
3k views
Detect touch on subview
I have a Viewcontroller with two UIViews, one named textureView and one objectView.
When I only have one view I detect touch using this:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent ...
5
votes
2answers
2k views
UIView duplicate
I need to duplicate a view, with all it's subviews.
Does anyone knows how to do it?
Thanks in advance!
4
votes
1answer
2k views
Animated transition doesn't work correctly in landscape orientation
My app only supports the landscape right orientation.
I'm trying to transition into a view controller's view, but when it performs the transition animation (such as curl up), the view is rotated 90 ...
3
votes
3answers
1k views
How access an uiview subview partially outside of his parent uiview?
I have the following UIVIew architecture (x,y,width,height) :
- MainWindow (0,0,768,1024)
- MainView (0,0,768,80)
- containerview (500,40,120,80)
- subview (500,40,120,80)
...
3
votes
4answers
2k views
UIModalTransitionStylePartialCurl half page
I'm displaying an UIViewController by the following way:
MyViewController *myVc = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
[myVc ...
3
votes
1answer
2k views
Drawing with Core Graphics looks chunky on Retina display
I have a UIView that draws a circle from inside drawRect:rect. After reading the Apple dev info on the Retina display, it seemed like using Core Graphics meant that the drawings would automatically ...
3
votes
3answers
2k views
iPhone UIView Animation Disables UIButton Subview
So I've got a problem with buttons and animations. Basically, I'm animating a view using the UIView animations while also trying to listen for taps on the button inside the view. The view is just as ...
3
votes
2answers
6k views
How to “transfer” first responder from one UIView to another?
I have a UIView subclass (CustomView for purposes of this question) that has its own handling of all touches events (Began, Moved, Ended, Cancelled). I also have a UIButton that is a sibling of ...
3
votes
4answers
2k views
Difficulty with apps with a forced landscape orientation
I have two apps, both of which force the user to use the iPhone in landscape mode, in order to have a wider screen, instead of a taller one.
One of the things I have found is that my first view will ...
2
votes
1answer
573 views
UIView background color affects touches in iOS 5
I had a custom view with subclassed touch responses that was working in iOS 4. On iOS 5, these touches would not respond at all when touched along the bottom edge of the view, if the view's background ...
2
votes
1answer
976 views
why might layoutSubviews NOT automatically be called on a view when its frame is set?
I have a view. It is part of a large and complex project. When the frame of my view is set, layoutSubviews is not automatically called.
Playing around with this, I tried putting the following ...
2
votes
1answer
6k views
UIView and AutoresizingMask ignored
First time posting on stack overflow.
I've spent hours scouring over many Google searches and have, at this point, practically memorized the UIView and UIViewController class reference docs. No ...


