Tagged Questions
1
vote
0answers
27 views
Optimize UIBezierPath drawing
I have a problem that I was hoping that someone in the community may have some expertise in. I am working on a drawing app. It's too much to get into as far as what it does and why, but at each ...
0
votes
1answer
56 views
Using circular progress bar with masked image?
I am working on a circular progress bar for custom game center achievements view and I have kind of "hit the wall". I am struggling with this for over two hours and still cannot get it to work.
The ...
0
votes
0answers
28 views
Drawing in drawRect with UIBezierPath crashes application
I have a following drawRect method:
-(void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.0f, rect.size.height); //seems to ...
0
votes
0answers
40 views
Drawing straight lines when touched moved IOS
I have planned to do simple drawing up, using that use can draw straight lines and free hand drawing, based on the selection it change. But the problem is straight line gets repeated from the starting ...
0
votes
2answers
32 views
drawRect being called but the code within it not being executed when run?
I had chosen the single view application template from XCODE 4.5.2. I have an appdelegate , a viewcontroller with a RDViewController.xib which I had made a type of my UIView class Graphics. Also I ...
0
votes
1answer
31 views
Using drawInRect inside a c method not working
I have this code, to draw some text inside a (so far) simple button:
UIImage *buttonImage(CGRect bounds, UIColor *fillColor, NSString *title) {
...
2
votes
1answer
59 views
shadow does not show in drawRect:(CGrect)rect,objective
My goal is
1. add gradient for my view (done)
2. add drop shadow for the bottom edge of my view ( issue at here )
What I am doing is :
- (void)drawRect:(CGRect)rect {
CGContextRef context = ...
1
vote
0answers
147 views
Advice with optimizing -drawRect: method
I want to draw 31 circles with different stroke width. It seems to me that I can not reuse it, because I can not scale it, all circles have different options. These views are not static and when I ...
0
votes
0answers
41 views
Use of CoreGraphics Loop Draw Creating Performance Issues
I am interested in overriding drawRect in a subclassed UIView to create a simple textured background for a tableView. I have accomplished my goal, but the performance is not so great. I understand ...
0
votes
1answer
172 views
Draw a pie chart with UIBezierPath
I'm trying to draw a PieChart using UIBezierPath, and I'm pretty close to do so, however, I've got a problem, as you can see on the screenshot attached
Here's the code I'm using :
...
0
votes
1answer
92 views
DrawRect keeps drawing white background
//inside init
_color = [UIColor orangeColor];
self.backgroundColor = [UIColor clearColor];
self.clearsContextBeforeDrawing = NO;
//inside drawRect
CGContextRef ctx = UIGraphicsGetCurrentContext();
...
0
votes
0answers
28 views
Build a UIImage with multiple image object [duplicate]
I have a few UIImage objects which I want to compose into a single UIImage and draw the UIImage objects in there using something like CGContextDrawImage . Here i have drawn the images but when i apply ...
0
votes
2answers
83 views
UINavigationBar drawRect Alternative (aka, Need CoreGraphics calls in a category)
I recently discovered that in > iOS5 UINavigationBar does not get its drawRect called. I want to figure out how to draw with Core Graphics in a category.
The end goal I am trying to achieve is ...
1
vote
0answers
179 views
iOS invert mask in drawRect
With the code below, I am successfully masking part of my drawing, but it's the inverse of what I wan't masked. This masks the outer portion of the drawing, where I would like to mask the outer ...
0
votes
3answers
247 views
UIView drawRect: Draw the inverted pixels, make a hole, a window, negative space
With the code below I am drawing a rounded rectangle. It draws a nice solid light gray filled rounded rectangle (at the size of "self"). I actually want to draw the pixel inverse of this, that is: not ...
0
votes
1answer
54 views
Overlaying color on a NON rectangle shade
I am creating a heat map as an overlay for an image, the sections of the heat map are not rectangles and thus makes it a bit more difficult to overlay a color because when you overlay a color of the ...
1
vote
3answers
135 views
UIImage Resize drawRect Filling Background with Black
I have a class called MNTRectangle which is a subclass of UIImage. I have overridden the drawRect method of this class to draw a border on the image (using its frame). I have it so when the user ...
0
votes
1answer
118 views
Can't stroke path after filling it
The code below nicely creates a rounded rectangle that is defined by a CGRect (rectRect).
It fills fine, but I am not getting a stroke. Any ideas why I can't see the stroke?
...
0
votes
2answers
184 views
draw a shadow around the shape,core graphic
I am drawing a shape with a stroke around it by doing following
- (void)drawRect:(CGRect)rect
{
// Draw a cross rectagle
CGContextRef context = UIGraphicsGetCurrentContext();
...
1
vote
2answers
154 views
draw a stroke around the shape, core graphic
I am drawing a shape like following :
- (void)drawRect:(CGRect)rect
{
// Draw a cross rectagle
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
...
0
votes
2answers
87 views
getting the text up-side down in core graphic
I am drawing a text in core graphic by following
- (void)drawRect:(CGRect)rect {
CGContextTranslateCTM(context, 20, 150);
CGContextScaleCTM(context, 1, 1);
// Draw the text using the ...
0
votes
2answers
60 views
getting EXC_BAD_ACCESS when installing the app in device, core graphic
What i am doing is to draw a simple rectangle and set color for the painted area
// Just added
@interface Gradient () {
CGColorRef lightBlueColor;
}
@implementation Gradient
...
0
votes
2answers
158 views
how to change the default color of string during drawRect (), core graphic
I am drawing a string in rectangle using following method
- (void)drawRect:(CGRect)rect {
.................................................
.................................................
...
1
vote
1answer
656 views
Drawing a very thin line with CGContextAddLineToPoint and CGContextSetLineWidth
I want to draw a very thin hairline width of a line in my UIView's drawRect method. The line I see that has a value 0.5 for CGContextSetLineWidth doesn't match the same 1.0 width value that is used to ...
2
votes
2answers
288 views
How to add an alpha layer over part of UIImage in drawRect?
I am completely new to implementing custom drawRect method (and Core Graphics) but am doing so to improve the scrolling performance for my UITableView. Please do let me know if I am doing anything ...
0
votes
1answer
434 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 ...
2
votes
1answer
298 views
Why is CGContextDrawImage in drawRect initially slow?
Consider this simple UIView subclass in an ARC-enabled iOS app that draws on the view when the screen is touched:
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint ...
0
votes
1answer
226 views
CGContext donesn't work correctly in thread
I'm trying to make infinite drawing in custom UIView from another thread uising Core Graphics. It's impossible to obtain current CGContext so I try to create new one. But I have no idea how to apply ...
0
votes
0answers
254 views
Draw an Angle and fill it with gradient colors
I'm making a custom control and it was fine til my client says "I want it with gradients".
So here I am.
I need to draw an angle and fill it with gradient color. My previous code was this:
- ...
0
votes
1answer
156 views
CoreGraphics: Draw rect in center of view
I have a UIView subclass with the drawRect: method overriden. In there, I have long lines of generated code that draw something.
The generated code has a problem of having all the ...
1
vote
1answer
435 views
Prevent UIImage from resizing when - drawInRect: is called
I'm rendering UIImage in the - drawRect: and placing it in the passed in CGRect by calling drawInRect: rect on the UIImage. It automatically resizes and stretches itself, which I don't want. How can I ...
0
votes
1answer
51 views
issue raised when adding a rectangle to the uiview
I am drawing an rectangle using tutorial at here
FlagClass.m
-(void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, ...
1
vote
1answer
192 views
CGContextAddEllipse - overlapping get's clipped - Quartz
I like to draw a glass with a few Elements
- Top Ellipse
- Bottom Ellipse
- and the Lines Inbetween
Next, it should be filled with a Gradient. The Elements work, but at the point, where the middle of ...
1
vote
0answers
89 views
Combining drawRect: with other UIKit drawing
I'm working on some other person's code, which does most of the UI drawing in drawRect:. However, I need to add some animations (UIActivityIndicator animating, for example) to the view, and since ...
0
votes
1answer
164 views
Speed up or optimize persistent drawrect
I'm using the following code to create a persistent DrawRect for a finger painting type exercise
When I run on the simulator it is fine, when I run on the iPad it gets delayed turning curves in ...
2
votes
1answer
683 views
UIGraphicsGetCurrentContext() short lifetime
I have a view which implements freehand drawing, but I have a small problem. I noticed on the iPad 3 that everything went to hell, so I tried to update my drawing code (probably as I should have done ...
0
votes
1answer
365 views
erase a persistent drawRect
I at last managed to get DrawRect that did not clear all the time using
(I also have the setClearsContextBeforeDrawing:YES )
- (void)drawRect:(CGRect)rect
{
...
0
votes
3answers
960 views
iOS - DrawRect performance issue
I am using -drawRect for the first time in an attempt to alternatively speed up a UITableView. However, the drawRect method seems to be slowing the table down quite largely.
Please can you tell me ...
1
vote
2answers
251 views
Having trouble with releases in core graphics
I've just started with releasing in core graphics, so I might need a little help.
I have code which looks like this:
UIImage *buttonImage() {
UIGraphicsBeginImageContextWithOptions(bounds.size, NO, ...
0
votes
1answer
140 views
How is memory handled with a UIView subclass inside UIScrollView
I have a variable sized UIView with a drawRect containing CoreGraphics custom drawing code. The view was originally quite small but has the potential to become very wide and is placed inside a ...
1
vote
2answers
213 views
Color difference between drawRect and Interface Builder?
Simply, I have 2 views in interface builder, one is set to the color 99,99,99 using the RGB sliders in interface builder.
The other view is colored programmatically to achieve a certain shape. I ...
1
vote
1answer
492 views
CGContextDrawLinearGradient versus cagradientlayer?
What is the difference between CGContextDrawLinearGradient, called in a UIView's drawRect method, and a CAGradientLayer? How do they compare performance wise? What is the best practice for creating ...
1
vote
1answer
167 views
iPhone how do i make two connected line to follow to the position?
I made the tail of speech bubble using core graphic and
The tail part of the speech buble supposed to move to any point as i want.
The problem is when the tail's end part(the pointy part) is ...
0
votes
2answers
539 views
CoreGraphics drawRect in a cocos2d project EXEC BAD ACCESS
I got a interesting riddle here. My cocos2d project uses a UIView to display nicer popups than the regular alert view. To be more flexible in the size of the popup, I draw the background in the ...
1
vote
1answer
324 views
iOS/Xcode — drawRect: Not Being Called in UIView Subclass
I'm working on an app with the main view being a UITabViewController. Under the UITabViewController are three UIViewControllers and one UITableViewController. Under one of the UIViewControllers is a ...
0
votes
1answer
599 views
Core graphics drag over pixels instead of points
Ok, I haven't found it anywhere. What should I do if i want to draw with core graphics per pixel? Like… I want to draw a line to pixels (45,61) and than (46,63) instead of drawing to point (23,31) or ...
1
vote
2answers
766 views
Trouble drawing CoreGraphics lines in drawRect() method
I'm working on the Stanford CS193p course and am trying to draw a graph. Drawing the axes works, but I can't draw the graph itself. I'm getting the message
CGContextAddLineToPoint: no current point.
...
0
votes
1answer
292 views
drawLinearGradient(), but for solid colour
I have a custom UITableViewCell class, and within that I've overridden the drawRect method to produce a nice gradient background. However, I only want the gradient for one case, and I switch using an ...
0
votes
0answers
999 views
Animate a UIView's CoreGraphics/drawRect content
Is it possible to animate a UIView's CoreGraphics content?
Say I have a UIView subclass called MyView that implements the drawRect: method like so:
- (void) drawRect: (CGRect) rect {
...
1
vote
1answer
1k views
UIBezierPath slow performance if used along with CGContextSetShadowWithColor
I am developing an app in which user draws lines with finger touch or simply sprays colors.
I am using UIBezierPath to paint the path (colors) on finger touch in drawRect method with following code.
...
