0
votes
0answers
59 views

Move and resize a UIView in a UIScrollView with UIPanGestureRecognizer

I have a UIScrollView. In the UIScrollView I have an UIView and in it I have many UIViews. Every UIView has to go to resize by dragging in the blue dots and been move in the UIScrollView by just ...
0
votes
0answers
28 views

Selectively clipping/layering subviews in a “UITextField” replacement?

I'm making a Core-Text replacement for UITextField. I'd like to replicate most of it's features, but can't figure out how to correctly clip all the subviews. I'm deriving from UIScrollView so I need ...
0
votes
0answers
13 views

UIView and CALayer Animations not synchronised

I've been working on an UI, and I mix UIViews for buttons and the like, and CALayers to draw backgrounds or other eye candy. I try an animate them with the following code: [CATransaction begin]; ...
0
votes
2answers
34 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 ...
0
votes
1answer
46 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
2answers
95 views

iphone How to crop or cut UIView in curved shape sample code

How do I crop or cut a UIView into a curved shape? I want to draw border to UIView and curved effect on corners. I have tried with CALayers but the corner looks blurry, is there a another way to do ...
0
votes
3answers
85 views

Circular CAGradientLayer Mask

I have a UIView that programmatically draws a "sunburst" pattern using UIBezierPath. Now I would like to extend this by masking the edges with a gradient- effectively making each "burst" fade from ...
2
votes
1answer
56 views

Is using CALayer to display CGPaths affect performance in iOS?

I am drawing some lines, curves and ellipsis using CGPath in iOS. I wanted to animate the rendering of the lines and curves. Lets say I want to animate 25 curves in the view. Is using CALayer to ...
0
votes
1answer
31 views

How to mask the layer of a view by the content of another view?

I have a UIImageView and a UILabel, and want the content of the UILabel to mask the UIImageView. The goal is that the text is visible with content of image but everything else transparent. Is there a ...
0
votes
1answer
57 views

Adding a CALayer sublayer inside of UIView init

I'm trying to add a CALayer as a sublayer in a UIView subclass, but when I add the sublayer inside the init method I get EXC_BAD_ACCESS when I add the view to another view or window. Init method: - ...
0
votes
3answers
134 views

CALayer & drawRect

In View and Window Architecture is stated, quote: Views work in conjunction with Core Animation layers to handle the rendering and animating of a view’s content. Every view in UIKit is backed by a ...
0
votes
0answers
17 views

CALayer render ontop of subview

I'm creating an custom UIView which uses the CALayerDelegate. I'm creating a view and put a little glossy style ontop. In my -initWithFrame: method I'm also putting UILabels as subviews into my view. ...
0
votes
1answer
60 views

What does CALayer know that I do not when zooming

How can I draw as smoothly as CALayer does while zooming? As seen in the third (tallest) image the white border is drawn with accurate, anti-aliased rendering. However neither my labels (even though ...
1
vote
2answers
32 views

Render layer of UIView which is not in the View Hierarchy

What i want to achieve is to take an image of an UIView which has not been added as a subview, present and do stuff with the image and afterwards add the view to the view hierarchy. I've searched and ...
0
votes
0answers
33 views

Complex UITableView/UITableViewCell and performance

I have a tableview with a complex form of subviews. above is a header (not part of the UITableview and no problem with that) but everything under that get's rendered very slow when there are a lot of ...
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
72 views

How can I set up gesture recognizer to interact any UIView when all the views are being animated?

I found the code listed below from https://github.com/DuncanMC/iOS-CAAnimation-group-demo. This particular method allows the user to stop a UIView while it is "in-flight" in a core animation ...
0
votes
1answer
75 views

Round corners in UIView: CALayer or background Image?

I need to make a UIView with rounded corners like this() in tableView with a very large number of items. Therefore, my question is whether the CALayer bad influence on smooth scrolling, and may be ...
1
vote
1answer
63 views

How to make UIView with AVCaptureVideoPreviewLayer look better?

I'm trying to build a subclass of UIView to quickly take one snapshot by using AVFoundation. It's working great but I would really like to make the corners round or add a little shadow. How can I ...
2
votes
2answers
96 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
276 views

Capture Screen Video in iOS, especially iPad Ratina

In one of my iPad app, I need to add the ability to record everything on the screen and create a video. I found the great ScreenCaptureView here: http://aroth.no-ip.org:82/wordpress/archives/673, and ...
3
votes
2answers
105 views

How to remove border from some part of UIView?

I am having a UIView which contains other subviews. I am applying border to this UIView and the border is applied to the whole UIView. For that see the first image. But do not want the border ...
0
votes
1answer
96 views

CAayer - (void)drawInContext:(CGContextRef)ctx is never called

I have trying to draw using CALayer through subclassing . I know there are some posts regarding i have seen most of them and followed the solutions give but no success. like setting the frame size. ...
1
vote
0answers
97 views

Is there a way to use UIView / CALayer in OpenGL or Apple's GLKit without rendering to UIImage/CGImageRef?

I know how to render a UIView/CALayer to a CGContextRef and a UIImage/CGImageRef.. That is old news. But is there a way to omit the rendering to Image/CGContextRef and use the UIView/CALayer directly ...
0
votes
0answers
54 views

CATransform3D on a layer, and UIView interaction

I have a UIView, and am applying a CATransform3D to it's layer to achieve a coverflow-like perspective view (using the .m34 thing, and a rotation). Visually, this works as expected. I also want to ...
3
votes
1answer
166 views

UIView animation block pause both the animation and the completion code

I have an animation block to perform a simple transform based animation, that on completion removes the view in question from its superview. UIView *msgView = [[UIView alloc] ...
0
votes
2answers
103 views

CALayer frame value causing animation even after removal from superlayer

Into the CALayer world: I am creating a layer that needs to remain in middle of view regardless of device orientation. Can someone tell me why does my layer animates after rotation from the old ...
1
vote
2answers
66 views

Why UIView doesn't need QuartzCore.framework to work?

I realized that every views are backed up by a CALayer. So I was wondering why when we use UIView we don't need to import QuartzCore.framework in our project ? I know we need to do it if we need to ...
0
votes
0answers
31 views

Blending options above UIScrollView

I have UIScrollView with pattern background (image of green grass actually). Scrolling the view creates the visual effect of running on an a grass field. In order to empower this effect I want to use ...
0
votes
3answers
432 views

How to fade UIView background color - iOS 5

I'm having trouble trying to get a custom UIView class to fade it's background. I've checked out the following StackOverflow questions but they don't seem to work for me. Fade background-color from ...
0
votes
0answers
58 views

UIView instance being its own subview

I thought I had the relationship between UIViews and CALayers under control but again iOS turned out to be weirder than I thought. My understanding was that view's subviews and its' layer's sublayers ...
0
votes
0answers
52 views

Compositing UIViews/CALayers with “source multiply”

I've a client with an app that needs to be able to have a UIView on top of another, with the pixels combining in not the normal, alpha-channel-driven way. What we need is to have the pixel values of ...
1
vote
1answer
96 views

How to improve performance of CALayer animations?

while studying Core Animation, I've made a UIView category which makes a subview be broken into a lot of tiles and diffused. https://github.com/minorblend/HNTileDisappear However, when the number of ...
0
votes
1answer
116 views

Cannot get CALayer to display in UIView

I have a simple, single-view app and for some reason I cannot get a CALayer to display in the app's UIView. The background color of the view is correct but the image in the CALayer is not visible. ...
0
votes
0answers
29 views

CALayer is invisible when a UISlider is on top of it

Ok, I am obviously doing something very wrong. I have a single-view iPad app. I have a single UIViewController which has a single UIView In the VC's viewDidLoad method I create a new CALayer, ...
4
votes
1answer
639 views

Stacking UIViews with blend modes in iOS

I have two different UIImageViews. I'd like to make the top UIImageView blend in using the Screen blend mode with the bottom UIImageView. I know of the property of CALayer: compositingFilter and I ...
1
vote
1answer
319 views

Scale UIView with the top center as the anchor point?

I'm scaling a UIView with CGAffineTransformMakeScale but I want to keep it anchored to it's current top center point as it's scaled. I've looked into setting view.layer.anchorPoint but I believe I ...
1
vote
2answers
153 views

Fastest way (performance wise) to darken UIView or CALayer

I have a UIView / CALayer which I would like to darken. How can I as fast as possible darken it? Is there any way to avoid blending? Following alternatives is known to me create a opaque CALayer ...
1
vote
1answer
52 views

iOS6 CALayer freeing/unloading for views in a scrollview that are scrolled non-visible

I'm aware that under iOS6, a UIView's CALayer is automatically unloaded and freed in low memory conditions, instead of the views themselves being unloaded. I love this new feature, so much easier to ...
1
vote
1answer
64 views

need help for speeding up custom UIView's subclass

I've started to write a UIView subclass. It will be a control that will let the user scroll blocks and press any of them, very similar to UITableView. Please check the links to images I posted below. ...
0
votes
0answers
53 views

Tilting a UIView in Y and Z-direction

My graphics is such that in order for my view content to properly align with graphics, it needs to rotate in depth ie along z-axis. Maybe 5-10 degrees along z, and negative 5-10 degrees along y. ...
1
vote
1answer
2k views

Center custom UIView vertically and horizontally using Auto Layout

I'm trying to build a rather simple animated custom UI using the Auto Layout API newly available iOS 6. The custom view I'm building has a circle that I want to be both vertically and horizontally ...
1
vote
1answer
110 views

Rotate a UIView that's already animating w/ rotation

I've been searching around, but couldn't find an answer that seems to address my specific issue. In my app, I have a custom UIView that animates indefinitely. It's a piece of seaweed, and the ...
0
votes
0answers
127 views

Custom Drawing Application for iOS 6

I am working on my first drawing application which will be written for the iPhone. I will have some basic Undo/Redo functionality, drawing a few shapes, and everything will be drawn on top of a ...
1
vote
1answer
51 views

ios: layer is showed outside its hosting view

I've read the Apple Core Animation document. It says that Core Animation doesn't provide a means for actually displaying layers in a window, they must be hosted by a view. When paired with a view, the ...
1
vote
1answer
208 views

Add Subview above mainviews layer

I am having trouble adding a subview above the CALayer of its parent view. I tried to attach an image to show what i mean but i dont have enough reputation so here is a link to the image: ...
0
votes
1answer
252 views

Infinite CABasicAnimation stops

I 've an infinite animation (rotating an image, type: CABasicAnimation) in my UIView with animation.repeatCount = HUGE_VALF; When I push a new ViewController and go back to the initial ...
4
votes
1answer
320 views

Simulate a “picture taken” screen flash

I have an AV Foundation app that simulates taking a picture (like the camera app). Normally the following works for me, but isn't in this instance. This code executes within an action in my view ...
3
votes
2answers
1k views

On iOS, drawRect cannot draw outside of the view's bounds?

I thought from some point on for OS X, and always true for iOS, that content can appear outside of the view's bounds? (for UIView) But if I create a brand new Single View app, and created a MyView ...
5
votes
2answers
1k views

iOS 6 view hierarchy nightmare

I have an app in the app store with nearly 5-star rating, but when iOS 6 came out, some of the views in in the app's main view hierarchy started blinking. This happens on the app that was in the store ...

1 2 3 4