0
votes
2answers
50 views

Crashing while assigning nil to UIViewController after removing view and popping

I have a sequence in which I need to pop a UIViewcontroller from outside the class. From the server I will get an log out event, and I need to pop the view controller if it is open. So I have done ...
0
votes
1answer
32 views

Extended UIView is not animating

i have a class that extends UIView, in this class a have a function that animate some subviews that are added to the view. when a call the instantiated class method (after adding it as subview to some ...
0
votes
2answers
18 views

Add a large uiview as a subview without overflowing

I have a uiview that i need to add a subview to, the subview's width is twice the width of the parent view, and i don't want this suview to overflow, i need the overflown area to be hided, how can i ...
0
votes
2answers
25 views

Subview not loading, but not crashing

So I've been struggling all day, trying to get a subview to show up on my app. I'm not getting any errors or crashes, but the subview just isn't showing up. code that calls the subview from the main ...
0
votes
2answers
48 views

UISlider value is zero when trying to pass value to UIView with custom class

I have a UIView, UILabel, and UISlider placed in my UIVeiwController in my ViewController files. I have also programmatically added a UILabel to the UIView as a debugging tool. Yes, I could connect ...
2
votes
1answer
37 views

UIView with rounded corners, but content is not rounded

I have a UIView, inside this UIVIew I have an other view that has almost the same size as his parent. The parent view needs to have rounded corners, and that works, but the content is not being ...
0
votes
1answer
42 views

Setting three sided border for UITableView - IOS

For my design specifications, my table view should only have three borders on top, left, and right. I have added it using the following code.... CGSize mainViewSize = menu_table.bounds.size; CGFloat ...
2
votes
1answer
49 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
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 ...
1
vote
2answers
40 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 ...
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 ...
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 ...
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
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 ...
0
votes
1answer
55 views

UITableView separator lines briefly bleed through overlaid UIView

Further to this question I asked recently, I was able to get the explanation view appearing in front of the tableview successfully, but I now have a problem whereby the tableview's separator lines are ...
1
vote
4answers
70 views

Not able to resize UITableView programatically - IOS

I have added UITableView to a view, I want my application to work fine for both iPod 5th generation and lower versions(which is smaller in size), So I resized the table view height to its view height ...
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 ...
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 ...
2
votes
2answers
75 views

UIView not autoresizing subview

I have a UIView a that has autoresizing subviews enabled. It's size is: <UIView: 0x7650180; frame = (0 0; 320 394); clipsToBounds = YES; autoresize = LM+RM+H; layer = <CALayer: ...
0
votes
1answer
69 views

UIView unchanged when modified from dispatch_async

I have a subview with live view from the back camera. I am animating it when toggling the camera to front. Because I could't sync the animation and the toggle, I covered it with another view with ...
0
votes
2answers
43 views

Dismiss a view when a user taps anywhere outside the view

I have a very complex app with lots of stacked views which contain lots of buttons ,drawing areas and other custom touch handling . I am displaying a draggable helper view which can be on top of all ...
1
vote
3answers
168 views

Proper practice for subclassing UIView?

I'm working on some custom UIView-based input controls, and I'm trying to ascertain proper practice for setting up the view. When working with a UIViewController, it's fairly simple to use the ...
0
votes
0answers
83 views

Draw a border for view with custom path mask. No UIView subclassing.

I am setting a mask for a view from a custom path. I would like to draw a 1px border according to that mask/path created border. I am writing one method to style that view: - ...
0
votes
0answers
93 views

Animated UIView losing position after suspend

I have Rotated and move a UIview using CATransform3D and CARotate3D at the same time as moving an underlying UIView using UIView animatewithduration (both UIViews move same direction) The animation ...
0
votes
1answer
71 views

Destroy UIView in init if condition isn't met

I'm trying to make a custom alert view that checks to see if a condition is true, and if so it builds itself and attaches itself to the window. However, if this condition is not true, I just want the ...
0
votes
1answer
56 views

How can I detect which subview is touched when dealing various moving subviews?

The following code produces an animation of an image of a shape from the top of the screen and it drifts downward using core animation. When the user taps, it will log whether the user tapped the ...
0
votes
1answer
88 views

Draw shadow only from 3 sides of UIView

I've successfully implemented drawing a shadow around my UIView like this: block1.layer.masksToBounds = NO; block1.layer.shadowOffset = CGSizeMake(0, 0); block1.layer.shadowRadius = 1; ...
0
votes
1answer
56 views

AddTarget to UIView

I'm writing my own custom control which is implemented through UIView. And when I initialize it, I would like to add a custom target to it like this: [myControl addTarget:self ...
1
vote
1answer
46 views

Checking to see if point in child view is in parent view

I have the following set-up: Where the light blue view, let's call it parentView, has a rectangular subview (the purple view) called childView. The user can use pan touches to rotate and stretch ...
0
votes
1answer
75 views

iOS programmatically alter uiview layout

I have a page on my iOS app laid out based upon the following diagram, which is as follows. Dark grey box = navbar Light grey box = UIView (for presentation, with some nice dropshadow etc) Black ...
0
votes
1answer
244 views

Applying a CAShapeLayer mask to a UIView

I am using this code to apply a layer to a UIview: mask = [[CAShapeLayer alloc] init]; mask.frame = baseView.layer.bounds; CGRect biggerRect = CGRectMake(mask.frame.origin.x, mask.frame.origin.y, ...
0
votes
1answer
44 views

How to get the correct frame of a rotated UIView (including correct position)

I have an app where I have a rectangle that the user can rotate and pan using their fingers. I'd simply like to know what the frame is of this rotated view so I can find out if it intersects another ...
0
votes
2answers
45 views

Imitating button click with UIGestureRecognized

Having added a UITapGestureRecognized to a UIView, how do I parse the view for ie. changing the background color during the tap? The purpose of this is to imitate a button click. UIView *locationView ...
1
vote
2answers
65 views

Preventing Subview from Transforming when its Superview Transforms

I have the following set up. I have a UIView called parentView that holds a UIView called childView. parentView can be rotated and resized using some touch gestures which need to be on the parentView. ...
0
votes
3answers
109 views

View not visible

My application starts with Root controller called TaskController : UINavigationController as as root view controller of UINavigationController i created class TaskRootController : ...
2
votes
2answers
103 views

Subview appears underneath superviews layer.border?

I have a UIView in which I define it's border in the following manner: self.layer.borderColor = [UIColor blackColor].CGColor; self.layer.borderWidth = 3; I attach a subview to this UIView, ...
0
votes
1answer
155 views

ipad objective c using removeFromSuperview to remove UICollectionViewController throws an error

So I'm customizing this control I found since I think it works very well except with this issue of mine: http://www.cocoacontrols.com/controls/fsverticaltabbarcontroller I wanted to load a ...
0
votes
1answer
119 views

Why is hitTest not being called when views subview is touched?

I have a view which I'll call parentView which has a subview called childView. Part of childView is outside the bounds of parentView, and childView has a panGestureRecognizer attached to it. I have ...
0
votes
2answers
159 views

Block passing Gestures to SuperView

A ScrollView is there with some SubViews.... ScrollView Contains its predefined gestures(Pan) and my custom gesture(Pan) as well and Recognize it simultaneously... SubViews also contains custom Pan ...
0
votes
1answer
118 views

Using touchesBegan & touchesEnded as Swipe

I'm trying to see if a user swiped all the way from one view, label, etc. to another. Here is my relevant CodeViewController.h : @property (strong, nonatomic) IBOutlet UITextField *textField; ...
0
votes
1answer
42 views

Cocoa touch view/view-controller conventions

I'm new to iOS dev and am working with an existing project. I just have a quick question regarding how views and view-controllers should be conceptualized and what the conventions are for dealing with ...
0
votes
4answers
83 views

Display a Floating UIView on Screen

is it Possible to display a UIView on iPad Screen without adding it to any other view? When I tap and keep tapped anywhere on the screen view should appear on the tap location and as soon as i take ...
2
votes
3answers
204 views

Convert UIKeyboardFrameEndUserInfoKey to View or Windows Coordinates

For the constant UIKeyboardFrameEndUserInfoKey, in the Apple docs it says: These coordinates do not take into account any rotation factors applied to the window’s contents as a result of ...
0
votes
1answer
110 views

How does UIActionSheet showInView method insert its view?

Im trying to implement my own CustomUIActionSheet. I have it almost working, but I have no idea how does the showInView method works. (void)showInView:(UIView *)view giving a view, this method ...
0
votes
1answer
50 views

Subclassed UIView not displaying proper after animating frame

I have subclassed UIView to contain basically a UIPickerView and a UIToolbar. When the user selects a particular row in the picker I will then add a UIImageView over the picker. However this image is ...
0
votes
2answers
68 views

Rotating a rectangle using a UIPanGestureRecognizer

I have the following view where I'm using a pan gesture in the upwards or downwards direction to rotate it positively or negatively: I'm wondering, is there a mathematical equation to precisely ...
0
votes
3answers
83 views

Implementing a UIView that can stretch and rotate with touches

I'm trying to implement a rectangular view that does the following. When the user drags the rectangular view from the left or right, it stretches as below: When the user pulls up or down on the ...
0
votes
1answer
67 views

UIBezierPath outline keeps appearing around view for some reason

This code below is what I use to create my subview, "theSubview", which I add to the parent view "parentView". Say parentView has the frame { {0.0, 0.0}, {100.0, 100.0} } and theSubview has the frame ...
0
votes
2answers
37 views

Most efficient way to hide a UIView

Out of the following, which is the best way to hide a view? Setting frame to CGRectZero Hidden Property to YES alpha Property to 0.0 Does one have benefits that the other does not? In terms of ...
0
votes
1answer
159 views

Optimize QuartzCore Animation with Shadows and Rasterization

Within my iOS app, I have a uiview that needs to be animated, transformed with gestures, shaded (using quartzcore shadows), and edited. When I perform animations and gestures on this UIView it is ...

1 2 3 4 5 17