Tagged Questions
0
votes
1answer
24 views
Change direction in stroke animation
I want to revert the direction of a path drawing. So I changed fromValue and toValue propeties, but now full path is visible at the start of animation and it begins to disappear.
I have the path:
...
0
votes
0answers
38 views
CABasicAnimation - transform scale keep in center
Trying to animatie an ellipse masked on a UIView to be scale transformed remaining in the center position.
I have found CALayer - CABasicAnimation not scaling around center/anchorPoint, and followed ...
7
votes
3answers
212 views
iphone : How to implement the page flip effect without curl?
I need to implement the page flip effect in an iOS app. But the the effect should not curl the page like it does with UIPageViewController and some other third party libraries that I have checked . ...
1
vote
3answers
85 views
Can't get a CALayer to update its drawLayer: DURING a bounds animation
I'm trying to animate a custom UIView's bounds while also keeping its layer the same size as its parent view. To do that, I'm trying to animate the layers bounds alongside its parent view. I need the ...
0
votes
1answer
59 views
A CALayer subLayer is being drawn with different frame origin. Bounds issue
I add a CAShapeLayer as subLayer to self.layer in a given view that way:
//balloonrect's value is this one
_balloonRect = CGRectMake(0, 55, 239, 118);
CAShapeLayer *balloonFrame = [CAShapeLayer ...
2
votes
2answers
82 views
CALayers never calls it's delegate's drawLayer:inContext: even after [layer setNeedsDisplay] and [layer display]
I can't figure out why the CALayer's I'm creating are not calling their drawLayer method. I've created a drawLayer delegate object for them, yet it never gets called. From a UIView subclass:
- ...
1
vote
1answer
63 views
How to draw multiple CALayer sublayers from parent layer
I have a CALayer with two subLayers that contain semi-static content. While rendering the top layer I would like to occasionally just go ahead and render the sublayers without scheduling an update ...
2
votes
2answers
202 views
Draw segments from a circle or donut
I've been trying to figure out a way to draw segements as illustrated in the image using.
I'd like to
a) draw the segment
a) include gradients
b) include shadows
d) animate the drawing from 0 to ...
0
votes
1answer
76 views
Draw along a path detection in iOS [closed]
I am writing a writing ios app for Kid.
I need to enforce writing along a define path like in Dora ABC apps. For example, writing A.
When user touch and draw, it draw only when user finger are along ...
0
votes
0answers
104 views
How to Resolve Image Distortion When Collection View Layout Changes Cell Frame
The Setup:
I have a collection view using a customized flow layout.
The custom layout puts the all the cells in a single-row line.
The custom layout overrides the layoutAttributesForElementsInRect ...
-2
votes
3answers
181 views
How to implement blink animation in iOS? [closed]
I noticed interesting animation effect in iPhone application. Cell with current date is blinking/flashing when user activate application or touch Today button.
How to implement the same effect? Is ...
1
vote
0answers
34 views
Is there any absolute index of app's performance in XCODE INSTRUMENTS?
I've profiled my app with xcode instruments. Now I have a FPS log (see picture). I'd like to have all FPS statistics in separate file (i.e. excel table) to analyze average fps or something more.
Can ...
2
votes
1answer
145 views
How to improve speed of CGContextDrawPath / drawInContext:
I have the following code below, It's basically one slice of a PieChart with many of these slices. Each slice is drawn in it's own CALayer and is added to a custom views layer using addSublayer:.
The ...
0
votes
2answers
241 views
Cut Out Shape with Animation
I want to do something similar to the following:
How to mask an image in IOS sdk?
I want to cover the entire screen with translucent black. Then, I want to cut a circle out of the translucent black ...
1
vote
1answer
192 views
CAKeyframeAnimation delay before repeating
I have a CAKeyframeAnimation animation that I would like to repeat forever using repeatCount = HUGE_VALF. The animation's duration is 2 seconds, but I would like to have a 3 seconds pause before each ...
4
votes
2answers
96 views
CALayer: Single pixel line looks like 2 pixels
This is my code:
int columns 3;
int columnWidth = self.layer.bounds.size.width / 3;
for (int c = 1; c < columns; c++) {
CALayer *layer = [CALayer layer];
layer.frame = ...
0
votes
3answers
57 views
Rotate the custom view?
I've some drawings on my custom view, want to let users rotate it
viewContorller.m:
-(void)setMyView:(myView *)myView {
...
[self.faceView addGestureRecognizer:[[UIRotationGestureRecognizer ...
-4
votes
1answer
61 views
Flip animation on a subview [closed]
Need to add an animation:
When i click on a product , a subview with product details will be added.
There is on animation on the products view but the product details subview will be added with a ...
7
votes
1answer
922 views
Create and and export an animated gif via iOS?
I have a series of user-customized images within an iOS app that are being animated in a simple, frame-by-frame flip book style.
My question is this: is there a way to allow users to export their ...
0
votes
1answer
178 views
Core Animation: set anchorPoint on 10.8 to rotate a layer about its center
NB: This is for a Cocoa app on OS X, NOT iOS.
I have a layer-backed NSButton (subclass of NSView). What I want to do is rotate that button using Core Animation. I'm using the following code to do ...
1
vote
1answer
167 views
CGContext vs CALayer
I'm trying to get a handle on Quartz 2D and looking at the online book Quartz 2D Graphics for Mac OS X Developers.
One very basic thing that is confusing me is the CGContext. For example, I can draw ...
2
votes
0answers
174 views
CALayer animations and color blending
I am using CAShapeLayer to generate some shapes. Actually I have 4 CAShapeLayers that represent some triangles in the screen. I create the shapes using CGMutablePathRef and setting the path property ...
1
vote
0answers
74 views
How to equally subdivide a closed CGPath?
I've an indeterminate number of closed CGPath elements of various shapes and sizes all containing a single concave bezier curve, like the red and blue shapes in the diagram below.
What is the ...
0
votes
1answer
92 views
CoreGraphics performance with gradients
I have multiple shapes on the screen which are moving.
Each shape can change based on its location and they are filled with gradient using CoreGraphics.
The performance of this is very bad - ~9fps on ...
0
votes
0answers
78 views
CALayer rendering in context: content position issues
After making some transformations to imageview, I'm trying to render it on another view's context by using this code
CGContextSaveGState(context);
CGContextConcatCTM(context, imageView.transform);
...
0
votes
0answers
111 views
Drawing NSView's subviews manually
I'm writing a custom NSView that needs to animate its subviews by applying NSAffineTransformation before drawing them.
I am looking for a method that draws the view's subviews so I can override it
in ...
0
votes
0answers
242 views
CALayer renderInContext triggering CoreGraphics errors for some UIViews in iOS 6
I'm trying to capture a snapshot of a UIView to animate a transition between two states, and according to everything I've read, the best way to do that is to do something like this:
+ (UIImageView ...
0
votes
0answers
43 views
How to create a custom segue / modal view transition? [duplicate]
Possible Duplicate:
Custom Segue Animation
If someone have downloaded the recent release of the Gmail app,
he could notice that a fair amount of the development time was invested in the ...
0
votes
1answer
181 views
CAShapeLayer redraws itself when any other animation occurs?
I have a graphic that is comprised of CGMutablePaths. I'm taking these CGMutablePaths, and separating them into CAShapeLayers based on the different area of the graphic they represent. Below is a ...
10
votes
3answers
408 views
Rotate rectangle around center
I am playing with Brad Larsen's adaption of the trackball app.
I have two views at a 60 degree angle to each other and was wondering how I get the rotation to be in the center of this (non-closed) ...
0
votes
0answers
142 views
CAShapeLayer freaks out when UIView Animation Occurs
I have a CAShapeLayer that consists of multiple sublayers which comprise a graphic that is made up of a lot of paths. I stored this graphic in CAShapeLayer for performance purposes not with the ...
5
votes
4answers
642 views
How can i add add a Subview with bounce like animation, like UIAlertVIew?
I need to add a subview (UIView) with animation, such that it appears with a bounce or pop up style, as in the case of UIAlertView, can anyone provide me with the proper code for that?
Thanks in ...
0
votes
2answers
305 views
UIView Rounded Corners Without a Mask Layer
I'm building an iPad app that includes several bar graphs (30+ bars per graph) and a pull-up menu from the bottom of the screen. The design calls for these bars to have rounded corners on the top left ...
1
vote
1answer
76 views
Magnify a streaming webcam image in OS X
I need to take a streaming image from a USB / UVC compliant web camera and digitally magnify it. The application is for people with low vision to be able to read.
The application must run on a MAC ...
0
votes
1answer
142 views
How do I get the smoothest animation possible in iOS?
I'm using the UIView method animateWithDuration:animations to animate sliding a UIView. It appears slightly choppy. Is there a better method, like CoreGraphics, to accomplish a smoother animation?
-3
votes
1answer
112 views
iOS, what graphics / gaming libraries / tool should I use for a kids education tool? Please discuss [closed]
I need to improve the fun factor in my kids educational puzzle app. At the moment my app isn't fun, in fact the word puzzle makes it sound fun, but it's more of a learning tool.
So I figure, that I ...
1
vote
1answer
175 views
Unpredictable behavior with Core Animation (CABasicAnimation)
I was writing a line a animation for iOS, where a line is drawn on a CALayer as a set of points in a CGPath. The line animates from a flat position to a 'molded' shape with different y co-ordinates ...
1
vote
1answer
57 views
Concept behind Arcs Puzzle
Here video link for the Arc puzzle
Can anyone please tell me what concept is used behind this game. I have just started learning Iphone and this game is pretty cool. First I thought it might be using ...
0
votes
2answers
107 views
Using Core Animation for a custom CATranstion
I would like to implement a new CATransition.
For example, let's say I would like to do this effect: a n by m array of two sided layers that have a portion of the source image on one side, and the a ...
0
votes
0answers
94 views
How can I get UIImage object from CALayers' tree that contains masked layer?
I'm writing code that gets UIImage object of layers' tree that contains masked layer.
Here is my layers hierarchy.
http://i.stack.imgur.com/Mqot3.png
I tried this.
CALayer *layer = ...
4
votes
1answer
175 views
Drag along a path in Iphone
I have an image. I want to drag that image along a path. Path can be of circular or rectangular shape. If the image is being touched and dragged, it should only travel along the path and should not ...
1
vote
1answer
238 views
-(void) drawRect:(CGRect)rect; is using up nearly all of iPhone CPU
- (void)drawRect:(CGRect)rect{
float sliceSize = rect.size.width / imagesShownAtOnce;
//Apply our clipping region and fill it with black
[clippingRegion addClip];
[clippingRegion ...
0
votes
1answer
428 views
drawRect Optimization
I am working on an application that allows the user to select an image (camera or gallery), then draw on that image with their finger. The area that they draw becomes the transparent portion of a ...
0
votes
0answers
115 views
iOS View vanishing after second CATransform3D
I'm having problems with a view I'm animating disappearing. Below is the first transform. It opens the view like a book cover and it works perfect. The second transform is to close the view like a ...
0
votes
1answer
125 views
How to animate size of custom drawn text?
I'm working on a educational app involving complex scripts in which I paint parts of different 'letters' different colours. UILabel is out of the question, so I've drilled down into Core Text and am ...
0
votes
1answer
741 views
How to animate CATransform3D with multiple transforms?
Basically, I'm rotating a layer about a point as :
CATransform3D transform = CATransform3DIdentity;
transform.m34 = 1.0 / -500;
transform = CATransform3DTranslate(transform, rotationPoint.x-center.x, ...
3
votes
2answers
301 views
Core Graphics screenshot without hidden items
I'm using Core Graphics to take a screenshot of my UIView, and then place it on top of that View (so I can animate it later):
// Get the screen shot
...
1
vote
1answer
70 views
Filing color like effect in iphone app
I am trying to make a "feeling app" which has an image which will change its color up to that location where the user touches it. I implemented UIPanGestureRecognizer for that and found the touch but ...
0
votes
2answers
139 views
Need help animating content in drawRect
I am trying to understand how to animate simple objects in - (void)drawRect:(CGRect)rect in my UIView subclass (called MyView). I'm new to core animation and just not sure on the best way to do ...
0
votes
3answers
387 views
iOS Animated imageView disappearing
I am working on a simple game for a uni assignment, and I have completed all that is required, but I have the following irritating problem:
I have a UIImageView, (showing an image of a coin) which ...

