String Allocation inside drawRect:...
String Allocation inside drawRect:...
- Subject: String Allocation inside drawRect:...
- From: Carlos Eduardo Mello <email@hidden>
- Date: Wed, 15 Apr 2009 10:43:27 -0300
Hi,
I am calling the code below inside drawRect: in my custom view, so I
can draw the string inside the view.
It fails miserably every time. Is it, by any, chance illegal to
allocate a string inside drawRect?
Could anyone think of a reason twhy his call should just refuse to do
its thing?
int degreeNumber = 1;
NSString * label;
label = [ NSString stringWithFormat:@"%d", degreeNumber ];
if(label)
{
...
}
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden