Method in UIView/NSView class. Draws the receiver’s image within the passed-in rectangle.

learn more… | top users | synonyms

0
votes
0answers
21 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
0answers
14 views

drawing mask and rendering out the result to image iOS

I am drawing an image in a mask, which is working perfectly in the device display, imageView.layer.mask = maskLayer; BUT when I render the image using renderInContext (for image output) the mask ...
0
votes
2answers
33 views

UIView does not clear (Refresh) when we reDraw String

I am trying to draw a char array on a UIView. The problem is that the view is not refreshing automatically and hence the chars are not displayed. When we touch the screen here and there then it gets ...
3
votes
1answer
52 views

iOS UITableView with dynamic text and images rendered together (NSAttributedString + images)

My problem is this: I have dynamic content in an iOS app (such as twits - although this is not a twitter app) that include both text and images (mostly icons/emoticons and thumbnails). I want to ...
0
votes
1answer
23 views

Override UIView drawRect to only draw in its rect

How to force the child views to only draw in the rect of itself? How can I override the drawRect method or any easy way to do it? Thanks.
1
vote
4answers
54 views

Drawing text in UITableViewCell

I used the following method to draw text in my custome cell, it's working fine but I just found that part of the text missing(Not showing all text in the cell): - (void)drawContentView:(CGRect)rect { ...
0
votes
1answer
32 views

Add overlay image on top of drawRect

I have a UIView subclass and I am drawing in the drawRect method. How can I add an overlay image on top of the drawRect target layer? I add the following in the initWithFrame method: //add the ...
0
votes
1answer
50 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
31 views

SubClass of UIView never call drawRect:

I created a nib for a custom view. And I set the nib's view Custom Class to "MyView" for example. MyView * myView = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] ...
0
votes
1answer
21 views

How can I determine the minimum NSRect for drawing an attributed string?

I cannot seem to find this and hope it is a FAQ somewhere. How can I get the minimum NSRect needed to draw an NSAttributed string on OS X? I am doing an overlay borderless window, but I want to ...
0
votes
0answers
23 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
32 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
28 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) { ...
0
votes
1answer
40 views

iOS Draw custom view with bottom border

I have a custom UIView that I would like to manually draw in the drawRect: method. I want the view to be a black rectangle with a single rounded corner and a red border on the bottom only. How can I ...
1
vote
1answer
64 views

setNeedsDisplay not firing DrawRect

I have a viewController which is obviously a subclass of UIViewController called MapViewController. In this viewController I use GPS to get the location of the user. I also have a view called ...
1
vote
1answer
65 views

text alignment drawInRect Not Working

I have the following code which draw text in a UITableViewCell, it's working fine for drawing and return the text but in the Center of UITableViewCell. So I gave it Right Alignment but not working!! ...
-3
votes
3answers
64 views

setNeedDisplay still does not work [closed]

Previously I asked a question in stackoverflow and that is about setNeedsDisplay cannot work. I am not a lazy guy and I have tried everything but it still cannot work. Maybe I cannot find where is the ...
-2
votes
2answers
140 views

How to get rotated image of imageview in uiview?

I created RotatedView subclass of UIView and added UIImageView as subview of RotatedView and also draw a image on RotatedView using drawRect: method same as image of imageView. I applied pinch and ...
0
votes
1answer
48 views

Subclassing UIToolbar and overriding drawRect: - UIBarButtonItems NOT displaying

Context I'm using the 'initWithNavigationBarClass' method to initialize a UINavigationController with a custom toolbar, here is the line where I alloc init the UINavigationController ...
-1
votes
0answers
31 views

How can I draw a transparent line in SmoothLineView?

Smooth-Line-View project : https://github.com/levinunnink/Smooth-Line-View Points maybe overlap when I only set color alpha, but it isn't I want. Thank you.
0
votes
1answer
34 views

picture does not move ( -setNeedsDisplay:YES does not call drawRect:)

sorry for bothering you again about the - (void)setNeedsDisplay which does not call - (void)drawRect: method...but I spend so much time on this problem I am a beginner in Objective-C and I am trying ...
0
votes
0answers
19 views

Gauge/Meter view using drawrect in Xcode

how to draw a gauge/meter view using drawrect which is stretched in width and reduced in height in Xcode application??? currently i am using radius in cgcontextaddarc to draw the gauge/arc. But i am ...
0
votes
3answers
52 views

iphone - Draw a line in UITableViewCell when background view is set

I have written drawRect as follows. -(void)drawRect:(CGRect)rect { [super drawRect:rect]; CGContextRef cxt = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(cxt, 2.0); ...
0
votes
2answers
70 views

setNeedsDisplay has not been called

I draw an sine wave on an UIView by using drawrect and it is linked to an UIViewController. It can draw one time when i first load the viewcontroller. I want that when I change the value of a ...
1
vote
0answers
43 views

How to detect the touch on a line drawn in drawrect?

I'm preparing a graph plot application,and i need to detect the touch of the user on the drawn lines using drawRect() method and show an alert message to user with the values at that point. I have ...
1
vote
1answer
43 views

Is there any method called directly after drawRect:?

I have two UIView subclasses, say "Class A" and "Class B". Class A, in its initializer, has the code [self addSubview:instanceOfClassB];. And in Class B's drawRect: is the line of code [self ...
0
votes
1answer
121 views

Drawing a triangle in UIView

I've got a triangle and I am trying to draw via drawRect in a UIView, Everything seems to work for the most part, except when I attempt to draw a triangle that exceeds the bounds of the view. I don't ...
1
vote
1answer
85 views

UITableView Section Headers not visible when table in visible rect

I have a UIScrollView with 3 UITableViews stacked horizontally. I switch between these tableviews using a tab-controller on top. However, when I switch to the 2nd or 3rd tab and switch back quickly to ...
0
votes
0answers
42 views

drawInRect replace the transparency with the color of the background

I have 2 png images with transparency. When I do a drawInRect of the images in my drawRect method, the transparency is replaced by the color of the background. I mean, if I draw my frist image ...
0
votes
2answers
66 views

DrawRect: How to fill in polygon given an ordered set of points?

Currently in my drawRect: method I am drawing a line between every point in my set of points, each represented as a CGPoint; however, now I would like to fill in the area that is within the region of ...
0
votes
1answer
132 views

IOS 6 Custom UIView by paintcode

I am an IOS beginner. I am trying to show a custom button with code generated by paintcode. I drag a View on Storyboard then set this generic view class to my custom view "GreenButton". When I run ...
0
votes
0answers
12 views

Touch Recognition Freezes After Custom Object is Edited

I'm at a loss with this one, and I'm not sure how well this can be explained without the entire code base, but I'll try. If anything needs clarification, ask and I will do my best to explain. ...
0
votes
3answers
70 views

setNeedsDisplay no refresh the screen

Iim displaying a huge amount of images each time I call drawRect with setNeedsDisplay. The problem is that cause lags cause each time I call dracRect, I redraw every images (thousands). Is there a ...
1
vote
0answers
104 views

drawInRect a transparent PNG image :Objective C

I have a background view with an image which fill all the view. Above this view, I added another view with backgroundColor [UIColor clear] and the attribute opaque to NO. Here is what I would like to ...
2
votes
2answers
110 views

Animating a box drawn in drawRect via CGMutablePathRef

my aim is to drow an empty rounded box, that should appear as a hole, onto my UIView to show what's under. I made this by overriding drawRect method as shown below. This gives me the ability to ...
0
votes
0answers
17 views

Using drawRect: to draw a border around a subclassed UIPopoverBackgroundView

I have subclassed my UIPopover's background view, the custom imagery works great, but I want to add a border to make the edges stand out. Considering the arrow is not necessarily going to be in the ...
1
vote
1answer
36 views

uiview subclass showing up as black rectangles first time setneedsdisplay is called, but ok after that

I have a custom UIView subclass which overrides drawrect. The view gets its data from a datasource, and passes some of that information to its delegate, the view controller, to process it into the ...
6
votes
2answers
71 views

setNeedsDisplay only gets called once

In my code I want to "animate" a delay of drawing a line, so after adding a new line to the view, I call setNeedsDisplay - which works fine once. Inside the drawRect method I draw the line and call a ...
2
votes
1answer
56 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 = ...
0
votes
1answer
42 views

Manually color fading from one UIColor to another

I'm trying to fade one UIColor to another in a drawRect. I've created this function to calculate a color at a certain percentage: - (UIColor *)colorFromColor:(UIColor *)fromColor toColor:(UIColor ...
0
votes
1answer
47 views

How to erase lines drawn in drawrect ?

I have an UIView BoardView in which I draw lines. When I push a cell in a table view, I draw a line in BoardView. When I push the first cell everything is ok, the lines is drawn. Now, if I push a ...
0
votes
1answer
40 views

Triggering drawRect from a Timer

I am fairly new to Xcode but not new to programming. I am using XCode 4.6.1 using Storyboard creating an App to run on an iPad. I am not familiar with NIBs ,only Storyboard. My MainViewController ...
0
votes
2answers
100 views

Draw circle on rectangle

I have UIView class and in method I want to draw first rectangles and sometimes circle - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); if ([WhatToDraw ...
0
votes
1answer
76 views

Improper borders in draw rect

I am trying to draw rounded corners on rectangle in drawRect method using bezier path, but somehow the rounded corner is being shown on inner side of rectangle, instead of both inner and outer sides. ...
0
votes
0answers
61 views

Call drawRect everytime setNeedsDisplay is encountered

I have the source code for a video decoder written in C. Now I'm porting that code to iOS and making an app for iPhone. The code to decode the raw data is written in C. Now I just need to render that ...
0
votes
0answers
43 views

Drawing ruled lines in UITextView

In a UITextView I want to draw ruled lines along with the text. For that, I subclass UITextView and overwrite drawRect. Seing a few post on the subject (including on this site), that seems the right ...
1
vote
0answers
144 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
40 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 ...
2
votes
1answer
222 views

CGContextSaveGState vs UIGraphicsPushContext

There are two drawRect methods: - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSaveGState(context); // do drawing here ...

1 2 3 4 5 12