Tagged Questions
The drawrect tag has no wiki summary.
7
votes
2answers
302 views
Most efficient way to draw part of an image in iOS
Given an UIImage and a CGRect, what is the most efficient way (in memory and time) to draw the part of the image corresponding to the CGRect (without scaling)?
For reference, this is how I currently ...
6
votes
3answers
777 views
Mysterious “progressive slowing” problem in run loop / drawRect
Here's a real mystery.
Imagine you are doing the conventional process of drawing a complex image offscreen (CGLayer), and you are updating the image on to the screen intermittently as you draw.
As ...
6
votes
2answers
8k views
How to draw an UIImage or directly in -drawRect:?
I have an UIImage which I want to draw on a UIView. But instead of creating an UIImageView and adding this as an subview, I want to overwrite -drawRect: and draw my UIView directly.
For example, my ...
5
votes
2answers
1k views
what is the difference between UIImageView and drawInRect?
I want to display so many images in table cells. I knew two methods to show an image.
One is creating an instance to UIImageView and show it
CGRect rect=CGRectMake(x,y,width,height);
UIImageView ...
5
votes
1answer
681 views
MKAnnotationView disappearing on swipe and double-tap zoom
I have subclassed MKAnnotationView to create an annotation that basically draws a circle around a point on a map view through override of drawRect. The circle draws fine in the following situations ...
4
votes
3answers
872 views
iOS 5 UIView drawRect override not working on device
I'm preparing my iPhone app to publish on iOS 5 GM and came across a bug with UIView. When I override the drawRect method on a subclass, the Simulator shows the desired result but when I try to test ...
4
votes
2answers
203 views
UIView with CATransform3D inside a UITableViewCell = Choppy Scrolling
I'm using a custom UITableViewCell, into which I am placing a subclassed UIView (within contentView, natch). The UIView in question displays a directional arrow and two lines of supporting text.
The ...
4
votes
1answer
63 views
Actionscript 3.0 drawRect works weird
I have a BitmapData object named myBitmapData. It was loaded of PNG of size 104x104. This PNG represents a red circle on the transparent background.
There is also a Sprite object named myBackground. I ...
4
votes
4answers
849 views
NSScrollview and transparent, overlay NSScroller subclasses
I have made a slick NSScroller subclass, but can't figure out how to make it overlay on top of the NSScrollView instead of pushing the documentView aside.
Here you can see the background of a ...
4
votes
1answer
3k views
Adding a drop shadow to NSString text in a drawRect: method without using UILabel
I'd like to add a drop shadow to text drawn using the iOS supplied NSString (UIStringDrawing) category method:
- (CGSize)drawAtPoint:(CGPoint)point forWidth:(CGFloat)width
withFont:(UIFont *)font ...
4
votes
1answer
1k views
draw outside of UIView's bounds from drawRect
My question is very similar to this one Not drawing outside bounds when clipToBounds=NO which received no clear answer.
Basically I have a UIView, and I want to draw a line from the center of it, to ...
3
votes
1answer
67 views
How to create a rectangle in a rectangle?
In my paintComponent, I have drawRect, which draws a single rectangle. However, I want to make the outline of the rectangle thicker but I don't know how. So I thought of making another rectangle ...
3
votes
1answer
227 views
How can I tint a UIImage with gradient?
I searched everywhere but didn't find the solution. I have image 1. How can I programatically tint them with gradient to get images 2 and 3? Here are those images:
Tints that I applied to them via ...
3
votes
2answers
189 views
drawRect on top of subviews
I have subclassed UIView and added a drawRect method to it. Then I define a view using this custom class and add subviews to it.
The problem is that drawRect seem to draw stuff under the subviews ...
3
votes
1answer
108 views
Does drawRect: automatically check whether something is within the bounds of the CGRect passed to it?
I'm wondering whether I need to check if something is within the bounds of the CGRect passed to drawRect:, or if drawRect: automatically handles that for me.
For example, assume that I have 10 ...
3
votes
2answers
575 views
NSView drawRect interfering with subviews?
I have an nsview and i use draw rect to draw an image for background. It also has 3 subviews nsbuttons. The problem is, whenever the mouse is down on a button, the other buttons disappear. But when I ...
3
votes
3answers
2k views
UIView drawRect drawing lines
I'm trying to add a little red line on the bottom of my UIView.
I want the line to be a 1px line.
Can someone tell me why the following code:
- (void)drawRect:(CGRect)rect {
CGContextRef ...
3
votes
1answer
5k views
How to fill a path with gradient in drawRect:?
filling a path with a solid color is easy enough:
CGPoint aPoint;
for (id pointValue in points)
{
aPoint = [pointValue CGPointValue];
CGContextAddLineToPoint(context, aPoint.x, aPoint.y);
}
...
3
votes
2answers
1k views
Making a Grid in an NSView
I currently have an NSView that draws a grid pattern (essentially a guide of horizontal and vertical lines) with the idea being that a user can change the spacing of the grid and the color of the ...
3
votes
1answer
2k views
Rendering a UIWebView in drawRect with loadHTMLString
I am having a problem with UIWebView. I'd like to render my own html code in it. When I add a webview as a subview and put in some html code it renders just fine. When it gets down to some optimized ...
3
votes
1answer
5k views
DrawRect of UIView inside UIScrollView
I'm trying to draw a small image on a UIScrollView for my iPhone app. I started with a UIImage created from a png I included in my bundle and that works ok. Every time the zooming/panning stops the ...
3
votes
2answers
648 views
Weird anti-aliasing in custom view
I have a custom UIView which is drawn using its -[drawRect:] method.
The problem is that the anti-aliasing acts very weird as black lines horizontal or vertical lines are drawn very blurry.
If I ...
3
votes
2answers
7k views
iPhone: why isn't drawRect getting called?
Okay, I guess I'm missing something important, and I can't seem to find the answer. I'm posting all the code, because it's very small.
Can someone please tell me what I'm doing wrong? I've worked ...
2
votes
3answers
112 views
drawRect drawing 'transparent' text?
I am looking to draw a UILabel (preferable through subclassing) as a transparent label, but with solid background. I draw up an quick example (sorry, it's ugly, but it gets the points across :)).
...
2
votes
2answers
86 views
How to add a second UILabel to a UIButton, configurable per UIControlState
I want to display 2 strings (at different positions in the button) with different fonts and colors (I'm using the button's setTitle for one, and I need another one), and some attributes must be ...
2
votes
1answer
65 views
How to make a shape appear on top of an image when mouse is clicked?
I'm aiming for the appearance of a rectangle when the mouse is clicked.
Here's a snippet of my current code:
try{
image = ImageIO.read(file);
g.setColor(new ...
2
votes
1answer
122 views
UIView & Image Clipping in iPhone?
Let said I have a image which the circle in the middle is transparent and I use the drawRect function to draw sqaure like the second image below.
Then what I want to do is to get the alpha layer of ...
2
votes
1answer
341 views
CALayer vs CGContext, which is a better design approach?
I have been doing some experimenting with iOS drawing. To do a practical exercise I wrote a BarChart component. The following is the class diagram (well, I wasnt allowed to upload images) so let me ...
2
votes
3answers
83 views
Is there any performance loss when repeatedly calling UIGraphicsGetCurrentContext
I'm building a UIView with a custom drawRect function. This is a fairly complex view, with a number of different items that need to be drawn. I've basically broken it down into one function per item ...
2
votes
2answers
425 views
How can I draw in the “bounce” area of a UIScrollView?
I have a custom-drawn view that I include in a UIScrollView that scrolls horizontally. The view draws a background with lines extending horizontally, and some different background colors. When I ...
2
votes
1answer
363 views
how draw over a subview of NSView
I'm trying to draw at the top of my NSView which have some subviews.
In fact I'm trying to reproduce the connection line style of Interface Builder. Here is the code I'm using for the moment :
- ...
2
votes
1answer
266 views
Multiple custom backgrounds for UIToolbar
In order to create an absolute bottomed footer on top of a tableView I found that using UIToolbar for this and adding custom views for it worked fine.
My problem is that I already use this as a ...
2
votes
1answer
269 views
Why does TCanvas.Rectangle() with pmXOR pen only work “sometimes”?
I developed the following AnimateRects() method to draw an animation rectangle on the Windows desktop. I use it for animating display of a modal form, making it appear to have "grown" from a grid ...
2
votes
3answers
359 views
Read/Unread cell (using drawrect)
My app downloading posts from internet to UITableViewCell. When user taps on cell, i am need to set this article as read (like on Mail.app). I dont know how to do that.
I am adding url (when user ...
2
votes
3answers
2k views
Adding outline shadow to a UIView which is iOS 3.0 compatible
I have two UIViewControllers A and B and they are added as subviews in the AppDelegate with B on top of A.
When a UIButton on B is tapped B slides off to the left with the following code:
[UIView ...
2
votes
4answers
967 views
subclassed UITableViewCell - backgroundView covers up anything I do in drawRect
I'm trying to make a subclassed UITableViewCell where I draw an image in the upper right corner. I have it working perfectly - except when I set self.backgroundView, my background image covers up the ...
2
votes
3answers
977 views
Is drawRect: called on multiple threads when using a CATiledlayer?
I know that drawLayer: and drawlayer:inContext: are called on multiple threads when using a CATiledlayer, but what about drawRect:?
Apple's PhotoScroller example code uses drawRect: to get its images ...
2
votes
2answers
2k views
iPhone CALayer Stacking Order
I'm using CALayers to draw to a UITableViewCell. I'm trying to figure out how layers are ordered with the content of the UITableViewCell. For instance:
I add labels to the UITableViewCell in my ...
2
votes
3answers
932 views
UITableView Did Load (Done drawing the cells)
Question
How can you detect when the Table View is done drawing the cells?
Issue
I got two labels within the contentView of an UITableViewCell. The size of these labels are dynamic. I was able to ...
2
votes
2answers
841 views
Custom Drawing of Alpha Images
I am trying to do custom drawing of an image(with alpha) and eventually going to apply different color tints to it. Right now I am just trying to draw it correctly. This might be simple problem but ...
1
vote
1answer
20 views
Stretchable image in drawRect causes slow scrolling
I am subclassing a UITableViewCell and in the drawRect: method I want to draw a stretchable image but I have experienced that this has a big impact on the scroll performance.
Does anyone know how I ...
1
vote
3answers
63 views
Is drawRect -— leaking memory
I am currenty seeing a problem with memory leaks, it seems to come from this code:
- (void)drawRect:(CGRect)rect
{
CGImageRef cgImage = CGBitmapContextCreateImage(offScreenBuffer);
UIImage ...
1
vote
0answers
20 views
Draw NSImage while space switching?
Currently in my project i've a simple nsimage which is updated via drawRect function.
I need to change the nsimage when the user switches between spaces... so i set my new image and called ...
1
vote
2answers
67 views
iOS — drawRect sometimes getting called on unexpectedly large rectangle
I have a simple test app. The app consists of the app delegate, a view controller, and a view. The app delegate just starts up the view controller and adds its view to the window. The view ...
1
vote
1answer
132 views
iOS drawRect: is it possible to clear the Graphics Content?
I'm writing an iPad app and I have a custom view where I override drawRect to do a bunch of drawing. I have a timer calling the setNeedsLayout to refresh the graphics.
When I profile my application I ...
1
vote
2answers
89 views
How do I make a rectangle move in an image?
Basically I have an image loaded, and when I click a portion of the image, a rectangle (with no fill) shows up. If I click another part of the image again, that rectangle will show up once more. With ...
1
vote
0answers
173 views
How can I draw an NSString (using drawInRect) in front of a layer instead of behind?
In my view's initWithFrame I create a root layer, and then add a sublayer to it. I set the sublayer's path so it will draw a colored box. I want to have text appear on top of the box, so in my view's ...
1
vote
1answer
114 views
When to change the frame size of a UIView while custom drawing it?
I am doing a custom draw in my App for a View in drawRect method.
I capture user's pinch gesture and based on that, I wanted to alter the the frame size of the View each time I do that.
I tried ...
1
vote
0answers
136 views
How to implement a custom Focus Ring in drawRect for NSTextField or NSTextVew
I want to draw a custom focus ring for my NSTextView subclass (which doesn't have a focus ring by default). I managed to implement it by overriding the parent NSScrollView drawRect and adding this ...
1
vote
2answers
116 views
Is drawrect more efficient for coregraphcs drawing than using core graphics in touches moved?
My whole app uses touchesMoved for drawing (Coregraphics). Should I be calling [self setNeedsDisplay] from within touchesMoved instead of performing the drawing code in there? Would that stop some lag ...