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
2answers
42 views
Manage uiview and uiviewcontroller
I created an uiview , that contained , many textfields , and I have an uiviewcontroller with xib file responsible for making signature .Is it possible to add this viewcontroller to my uiview in order ...
0
votes
1answer
20 views
Blend MPMovieplayerController in background UIImageView
As the title says, I was trying make so that the corners of my MPMovieplayerController go underneath my UIView background image, but I don't know how to obtain this effect. The effect I would like to ...
0
votes
1answer
45 views
Add overlay image on top of drawRect
I have a UIView subclass and I am drawing in the drawRect method.
How can I add an overlay image on top of the drawRect target layer?
I add the following in the initWithFrame method:
//add the ...
0
votes
2answers
38 views
If custom UIView has >1 sublayers, app crashes on touchesBegan, why?
I have a few custom UIView objects that all handle drawing like this:
- (void)drawRect:(CGRect)rect {
// ^ I init the layers 1 and 2
[self.layer insertSublayer:layer1 atIndex:0]; // 1 or more
...
0
votes
2answers
45 views
Interface building - UIViews vs Images vs Core graphics vs PDF subclass
My app uses flat graphics, which mostly consists of lines and flat surfaces...
Whats the best approach for building the UI?
use PNG images as much as possible (like for the attached picture, the ...
0
votes
0answers
30 views
How to resize a child UIView proportionally to parent resizing?
I am trying to create an avatar, which is a human figure clothed with various pieces of clothing.
In other words, I have a UIView which contains several UIViews. I have a zoom function where the ...
-1
votes
0answers
35 views
uiview animation and a reload data
I have a view which I have 2 UIButtons below a UITableView. I made an animation on the view so that it can go down and the tableview to stretch for several rows
but if I call a reload data for ...
0
votes
0answers
9 views
How to put a UIButton or UITableview ontop of a UIView / Kenburns for IOS
I found a plugin that animates a UIView . I want to add a button to the top of the Ken burns view I have tried a number of things but to no avail.
I know I added the button to the view because I put ...
1
vote
2answers
39 views
Which event is called after the view is shown
I have created a small app with a storyboard.
Now, I have created a first view, which should be my splash. I am now searching for the right place to put my work into it. After this work, I would ...
0
votes
2answers
29 views
Swipe Gesture between UIView
I have an ViewController class, where i have an UIView called templateView on self.view, which consists of an UIView called gridView, here i need to swipe on templateView, for that i have added ...
2
votes
1answer
99 views
A faster way to update interface using background threads
I'm building a spectrograph and would like to know how I can improve the performance of my UIView-based code. I know that I cannot update user interface for iPhone/iPad from a background thread, so ...
-1
votes
1answer
22 views
Accessing class functions
I have created a UIView class. In this class it has touchesbegan and touches moved functions etc. When I create an instance of this class in my UIView controller they don't work.
Is it not possible ...
0
votes
1answer
34 views
UIView subclass in XIB doesn't display (drawRect: never called)
I am designing a custom view controller in interface builder with a XIB file and I have a custom UIView subclass that I want to add to my view controller. Here is how I've put my custom view into the ...
1
vote
2answers
55 views
Reusing class best practice
My UIView (ClassA) has a button that when pressed shows another UIView (ColorClass) with 3 buttons that allows a user to select a color. The color that is selected is passed back to ClassA so that it ...
0
votes
0answers
32 views
UIView inside UIScrollView receive touch and allow zoom with scrollview
I have UIView inside UIScrollView. In UIView, I implement touchesBegan, touchesMoved, touchesEnded to draw using CoreGraphics. In UIScrollView, I set delaysContentTouches = NO, to let subview of ...
0
votes
2answers
33 views
iOS: get UIVIew from accessibilityLabel
Let's say I don't have any other information and I am on current iPad screen where many views (labels, buttons, textfields etc) have unique accessibility labels assigned. If I have accessibilityLabel ...
0
votes
0answers
37 views
Reuse same UIView for Left to Right Animation side by side
I have created UIView in XIB. I want to animate this view from Left to Right 2 times that too SIDE BY SIDE.
Below code animates the UIView but this code animates one by one transition of this UIView. ...
2
votes
0answers
81 views
Is there an Objective-C reusable view similar to AurioTouch2? [closed]
Like many people, I like the power and functionality of Apple's AurioTouch2 sample code. However, the current example seems to be really tightly coupled to the underlying project.
The current project ...
0
votes
2answers
100 views
Make a UIView display the camera view using UIImagePickerController
I'm trying to display the image a the camera sees into my own custom view. I DO NOT want to use Apple's own overlay property for UIImagePickerController: cameraOverlayView.
I don't want an overlay, ...
0
votes
0answers
47 views
Creating objects to store properties [closed]
I have couple of UIViews with subviews. I want to access them from different places through a button. Until now, every time want to add the view and its subviews, I have to set all the properties of ...
0
votes
0answers
41 views
Weird image view error
I have created a subclass of UIView and in the init method i have this code which creates the error
_blackBackground = [[UIView alloc] initWithFrame:self.frame];
_blackBackground.backgroundColor ...
0
votes
0answers
33 views
UIScrollView Height getting
I have cardsDetialViewController with one scrollView in it. The height of scrollview is set to 354 and width is set to 309, in storyboard As shown in following figures.
...
1
vote
3answers
72 views
How to make round shape of any view [closed]
I just want to change the shape of view from Square to Round. As i try with cornerRadious, But it just round the corner only. As I want to make whole view as a round shape.
0
votes
0answers
32 views
SubClass of UIView never call drawRect:
I created a nib for a custom view.
And I set the nib's view Custom Class to "MyView" for example.
MyView * myView = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] ...
1
vote
1answer
42 views
how to change the UIBarButtonItem size when rotate from the portrait to landscape?
I add one UISegmentedControl to the navigation bar. When the view loaded in portrait, its frame seems right. but when it rotate to landscape, the UIBarButtonItem becomes larger. If rotate to portrait ...
0
votes
1answer
21 views
UIScrollView / Adding xibs to it
I am trying to create a scroll view and add 2 xib screens (SVPage1.xib and SVPage2.xib) to it so that I can flip through both screens.
I created scrollview and Page Control object.
This is what I ...
0
votes
1answer
41 views
Why are my CGPoints all returning as {0,0}?
I am trying to store the locations of 10 UIImages I have stored within a UICollection and placed using the interface builder. I am trying to do so using View.center but all my CGPoints are returning ...
0
votes
0answers
32 views
Resizing subviews of a UIView subclass (loaded from Nib)
I have a UIView subclass that I'm loading from a Nib. I'm trying to dynamically size a UITextView that is a subview of my UIView subclass. No matter what I try to do, it seems like the frame is ...
0
votes
3answers
52 views
Storyboards and programmatically views
I'm totally lost in this issue. I have been working with storyboards, I have created a navigation controller with tableviews and some stuff. There are Services in each row of the tableview and I need ...
1
vote
0answers
45 views
Weird behavior of child view controller's view frame on iphone5
What I'm trying to do is create a view controller, and have its view animate in from the right. The main view controller has a view called viewContainer that will house this view. The weird thing is ...
1
vote
3answers
50 views
Drawing a polygon with one color for stroke, and a different one for fill?
I'm having trouble with drawing some lines that are stroked with a color and then filling their insides (they make a polygon) with another one.
UIColor *houseBorderColor = [UIColor ...
0
votes
1answer
26 views
UIView Subclassing and OOP
I have an app where the model is an array of Menu objects containing information such as title, images, method etc.
I would like to create a scroll view with a list of Menu Views, maybe with picture, ...
0
votes
2answers
49 views
UIView shows 25% of it
I have a map with the MapBox library.
Now i set the background like this:
UIView *background = [[[NSBundle mainBundle] loadNibNamed:@"IGBackgroundView" owner:self options:nil] objectAtIndex:0];
...
0
votes
0answers
34 views
Lost touch when trying to move UIView to another UIView
I am trying to move UIView from UIScrollView to another UIView by using UIPanGestureRecognizer like that:
if ([gestureRecognizer state] == UIGestureRecognizerStateBegan || [gestureRecognizer state] ...
0
votes
2answers
40 views
UIView Rotation Magically Happening
I was given a project that was started by someone else who no longer works here.
I have a UITabBarController which holds some UIViewControllers.
If the application is running on iOS 6, everything runs ...
2
votes
0answers
61 views
Is it mandatory to dismiss a view when it is presented in ios?
I am working on iPad App.
Here I am having different views with different orientations. Among them I am PRESENTING a view on clicking button.
While I am DISMISSING that view i am facing orientation ...
1
vote
1answer
30 views
cocoa touch trying to delay the animation of the uiview before it pops out again
I have a UIView that serves as the container for 2 tableviews. I have two buttons that controls how data is loaded on those tableviews. Basically when 1 button is tapped the uiview slides out to show ...
0
votes
2answers
40 views
Translate UIView by dragging another UIView
Please refer to the image below for the following question: The blue and orange circles you see are UIView's. I would like to be able to drag the blue UIView which has a UIPanGestureRecognizer and ...
2
votes
1answer
28 views
CoreTextView scrollable
I'm using CoreTextView to render some html formatted text into a custom view. I'm trying to learn how it works (and I'm a novice with iOS), so I was playing around with the example provided (which ...
1
vote
1answer
73 views
IOS UIImagePicker in a UIView subview
I am trying to display a UIImagePicker from a programatically generated UIView that's added as a subview of the original view controller. The image picker comes up and so does the camera but the ...
0
votes
1answer
30 views
IOS resize UI after rotation (Is fill parent possible in IOS)
Is it possible to make textfield or other UI to fill screen width? Something like "match_parent" or "fill_parent" in Android.
..
If not, is it a right solution to use ...
0
votes
2answers
70 views
Move a view up so textfield does not disappear behind keyboard
I have a view like you can see over here.
You can see that I have an header image with below a lot of textfields. Only the UITextfields Adres - Postcode - Gemeente - Tel.nr - Email - BTWnr. are ...
1
vote
3answers
80 views
Buttons added programmatically in View1 shows up in View2. SOLVED
Edit after solving problem: The problem was "typically" easy to solve, but took som hours with thinking and help to figure out where i went wrong. It seemed that when i created ViewController2 i set ...
0
votes
1answer
36 views
Is there a simple and elegant solution to put UIView animation(animating pngs) from processing with CPU to GPU?
In my app I'm using lot of UIView animations (animating pngs).
Is there a simple and elegant solution to put all this UIView image animation from processing with CPU to GPU? It's worth it?
0
votes
1answer
25 views
How make background circlular fade
I'm not sure what it's called, I have UIView with UIWebView in it, and I want make it exactly as the screen shot below while UIWebView is loading.
Can anybody help me with that?
Thanks
0
votes
0answers
29 views
UISegmentedViewController cutting off view
I am running into a weird problem. I am using a UISegmentedControl to switch between two views. When the UISegmentedViewController comes on screen, the default view(view1) is loaded.View1 looks ...
1
vote
0answers
30 views
ios UIScrollview wont change height
The application is a simple UIScrollView that consists of a iCarousel UIView and under that view is another view. I want the iCarousel view to change height while I'm scrolling down, however the
...
1
vote
3answers
51 views
UIButton and Swipe Gesture
I have a UIView with two UIButtons on each side (left and right) and a UIImageView in the center. A tap on either button will change the UIImageView and that works. I want the ability swipe across ...
-4
votes
5answers
63 views
How do i get the size of a UIView from within the View Controller? [closed]
Inside the viewDidLoad method of a UIViewController:
NSLog(@"frame: %f %f", self.view.frame.size.width, self.view.frame.size.height);
With the device in landscape:
frame: 748.000000 1024.000000
...
0
votes
1answer
67 views
Resizing full screen view inside UIViewController on rotation?
I added a webview to a UIViewController. I assumed that I could match it's size to the UIViewController's view, but soon realised that the UIControllerView frame was independent of the screen ...
