User willc2 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T19:58:30Zhttp://stackoverflow.com/feeds/user/23973http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1223340/iphone-how-do-you-color-an-image/1915721#19157210Answer by willc2 for iPhone - How do you color an image?willc22009-12-16T16:12:03Z2009-12-16T16:12:03Z<p>Change your blend mode to <strong>multiply</strong> and your code will work:</p>
<pre><code>CGContextSetBlendMode(ctx, kCGBlendModeMultiply);
</code></pre>
http://stackoverflow.com/questions/1904695/how-to-tell-if-a-subview-was-tapped-twice/1905835#19058351Answer by willc2 for How to tell if a subview was tapped twicewillc22009-12-15T07:53:40Z2009-12-16T15:39:20Z<p>Here's how to use the <em>.tapCount</em> property inside <strong>touchesBegan:</strong></p>
<pre><code>-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
{
NSUInteger numTaps = [[touches anyObject] tapCount];
UITouch *touch = [[event allTouches] anyObject];
if ([touch view] == yourThing) {
NSLog(@"%i taps", numTaps);
}
}
</code></pre>
http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider1How to get the center of the thumb image of UISliderwillc22009-11-11T10:45:55Z2009-12-15T19:04:35Z
<p>I'm creating a custom <strong>UISlider</strong> to test out some interface ideas. Mostly based around making the thumb image larger. </p>
<p>I found out how to do that, <em>like so:</em> </p>
<pre><code>UIImage *thumb = [UIImage imageNamed:@"newThumbImage_64px.png"];
[self.slider setThumbImage:thumb forState:UIControlStateNormal];
[self.slider setThumbImage:thumb forState:UIControlStateHighlighted];
[thumb release];
</code></pre>
<p>To calculate a related value I need to know where the <strong>center point</strong> of the thumb image falls when it's being manipulated. And the point should be in it's superview's coordinates.</p>
<p>Looking at the <strong>UISlider</strong> docs, I didn't see any property that tracked this. </p>
<p>Is there some easy way to calculate this or can it be derived from some existing value(s)?</p>
http://stackoverflow.com/questions/1878595/how-to-make-a-circular-uiview/1896549#18965490Answer by willc2 for How to make a circular UIViewwillc22009-12-13T13:45:54Z2009-12-13T13:45:54Z<p>I can at least show you a shortcut for drawing circles of arbitrary size. No OpenGL, no Core Graphics drawing needed.</p>
<p>Import the QuartzCore framework to get access to the <strong>.cornerRadius</strong> property of your UIView or UIImageView.</p>
<pre><code>#import <QuartzCore/QuartzCore.h>
</code></pre>
<p>Also manually add it to your project's Frameworks folder.</p>
<p>Add this method to your view controller or wherever you need it:</p>
<pre><code>-(void)setRoundedView:(UIImageView *)roundedView toDiameter:(float)newSize;
{
CGPoint saveCenter = roundedView.center;
CGRect newFrame = CGRectMake(roundedView.frame.origin.x, roundedView.frame.origin.y, newSize, newSize);
roundedView.frame = newFrame;
roundedView.layer.cornerRadius = newSize / 2.0;
roundedView.center = saveCenter;
}
</code></pre>
<p>To use it, just pass it a <em>UIImageView</em> and a diameter. This example assumes you have a UIImageView named "circ" added as a subview to your <em>view</em>. It should have a <em>backgroundColor</em> set so you can see it.</p>
<pre><code>[self setRoundedView:circ toDiameter:100.0];
</code></pre>
<p>This just handles <em>UIImageViews</em> but you can generalize it to any <em>UIView</em>.</p>
http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider/1804715#18047151Answer by willc2 for How to get the center of the thumb image of UISliderwillc22009-11-26T16:42:44Z2009-11-26T16:42:44Z<p>This will return the correct X position of center of thumb image of UISlider in view coordinates:</p>
<pre><code>- (float)xPositionFromSliderValue:(UISlider *)aSlider;
{
float sliderRange = aSlider.frame.size.width - aSlider.currentThumbImage.size.width;
float sliderOrigin = aSlider.frame.origin.x + (aSlider.currentThumbImage.size.width / 2.0);
float sliderValueToPixels = (aSlider.value * sliderRange) + sliderOrigin;
return sliderValueToPixels;
}
</code></pre>
<p>Put it in your view controller and use it like this: (assumes ivar named slider)</p>
<pre><code>float x = [self xPositionFromSliderValue:self.slider.value];
</code></pre>
http://stackoverflow.com/questions/1779966/how-do-i-release-this-cgpath-when-i-need-to-return-it1How do I release this CGPath when I need to return itwillc22009-11-22T20:53:51Z2009-11-23T12:18:02Z
<p>I have a method that returns a <strong>CGMutablePathRef</strong>, something like this:</p>
<pre><code>- (CGMutablePathRef)somePath;
{
CGMutablePathRef theLine = CGPathCreateMutable();
CGPathMoveToPoint(theLine, NULL, 50, 50);
CGPathAddLineToPoint(theLine, NULL, 160, 480);
CGPathAddLineToPoint(theLine, NULL, 270, 50);
return theLine;
}
</code></pre>
<p>The Xcode/Clang static analyzer warns that there's a potential leak. The docs say to call <strong>CGPathRelease()</strong> but where would I put that? </p>
<p>If I put that before the method returns won't that cause <strong>theLine</strong> to disappear before it's returned to it's caller?</p>
http://stackoverflow.com/questions/1761288/will-this-hack-make-apple-furious-will-the-reject-my-app/1778226#17782260Answer by willc2 for Will this hack make apple furious? (Will the reject my app ?)willc22009-11-22T09:04:13Z2009-11-22T09:04:13Z<p>If you want to know if some programming technique will result in rejection, make a small app with limited functionality and use your questionable technique in it.</p>
<p>It takes 2 weeks to get an answer but at least you won't invest a ton of time upfront.</p>
<p>If they approve your test app, delete it from the store. If it has genuine utility, set the price to $0.99 and leave it.</p>
<p>This method is not foolproof, but it is low cost.</p>
http://stackoverflow.com/questions/1052373/in-cocoa-how-do-i-use-nstimezone-to-get-the-system-time-zone-offset-as-a-string1In Cocoa, how do I use NSTimeZone to get the system time zone offset as a string?willc22009-06-27T08:17:29Z2009-11-17T11:15:34Z
<p>For PDT, I would want "-0700".</p>
<p>I'm getting a date in the past to determine how long ago something happened.</p>
<pre><code>NSDate *then = [NSDate dateWithString:@"1976-04-01 12:34:56 -0700"]; // Note the hard-coded time zone at the end
</code></pre>
<p>I'll be constructing the date string elsewhere but I don't know how to access the local time zone.</p>
<p>I read the Apple Dates and Times Programming Topics for Cocoa as well as the NSTimeZone and NSDate Class References but it's just too hard for me to put the information together. I could really use a few lines of code just to show how it's used.</p>
<p><strong>Update</strong>: While struggling with this, I was writing code using a Command Line template so I could try things quickly. I just tried my previous code on iPhone and I'm getting <strong>NSDate may not respond to '+dateWithString:'</strong> Sorry if that added to the confusion, who knew Apple would change up such a basic class.</p>
http://stackoverflow.com/questions/1736341/which-object-or-view-did-i-touch/1737989#17379892Answer by willc2 for Which object, or view, did I touch?willc22009-11-15T16:20:10Z2009-11-15T16:20:10Z<p>Say you have a view controller with these ivars (connect to controls in Interface Builder)</p>
<pre><code>IBOutlet UILabel *label;
IBOutlet UIImageView *image;
</code></pre>
<p>To tell if a touch hit these items or the background, view add this method to your view controller. </p>
<pre><code> -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
{
UITouch *touch = [[event allTouches] anyObject];
if ([touch view] == label) {
NSLog(@"touched the label");
}
if ([touch view] == image) {
NSLog(@"touched the image");
}
if ([touch view] == self.view) {
NSLog(@"touched the background");
}
}
</code></pre>
<p>Any UIView subclass like a UIView, UILabel or UIImageView that you want to respond to touches must have the <strong>.userInteractionEnabled</strong> property set to YES. </p>
http://stackoverflow.com/questions/1459030/how-to-customize-uislider/1714482#17144820Answer by willc2 for How to Customize UISlider ?willc22009-11-11T11:03:17Z2009-11-11T11:15:52Z<p>Put your image swapping code in your slider value-reading method, which is usually: </p>
<pre><code>-(IBAction)sliderChanged:(id)sender; {}
</code></pre>
<p>Swap your custom green image with a custom red image whenever your slider value reaches some predefined value. See example below.</p>
<pre><code>// Switches the -thumbImage between an ivar named highImage and lowImage
// when the slider passes the halfway point
if (sliderValue > 0.5) {
[self updateSliderThumbWithImage:self.highImage];
} else {
[self updateSliderThumbWithImage:self.lowImage];
}
</code></pre>
<p>define the slider image update method like this: </p>
<pre><code>-(void)updateSliderThumbWithImage:(UIImage *)image;
{
[self.slider setThumbImage:image forState:UIControlStateNormal];
[self.slider setThumbImage:image forState:UIControlStateHighlighted];
}
// You have to set thumb images for both states
// or your image will vanish when user slides it.
// Not sure if you have to do the same with the track image, though.
</code></pre>
<p>Hope this helps somebody.</p>
http://stackoverflow.com/questions/1671531/is-it-possible-to-use-format-strings-to-align-nsstrings-like-numbers-can-be2Is it possible to use format strings to align NSStrings like numbers can be?willc22009-11-04T03:27:47Z2009-11-04T05:25:48Z
<p>I'm using <strong>NSLog()</strong> to print some tabular data consisting of an <strong>NSString</strong> and an associated <strong>integer</strong>. </p>
<p>Assume I know the length of the longest word. </p>
<p>Is there a way using <strong>format strings</strong> to get this kind of column alignment:</p>
<blockquote>
<pre><code>word:tree rank:5
word:frog rank:3
word:house rank:2
word:peppercorn rank:2
word:sword rank:2
word:antlion rank:1
</code></pre>
</blockquote>
<p>The reason I'm asking about formatting strings is I'm hoping for a lightweight way to format my ghetto debugging output.</p>
<p><strong>Here is what I tried:</strong> </p>
<pre><code>NSString *word = @"tree";
NSUInteger rank = 4;
NSString *str = [NSString stringWithFormat:@"word:%-20@ rank:%u", word, rank];
NSLog(@"%@", str);
</code></pre>
<p><strong>Result:</strong> </p>
<p><em>word:tree rank:4</em></p>
<p>No effect at all.</p>
http://stackoverflow.com/questions/1621364/how-to-find-largest-triangle-in-convex-hull-aside-from-brute-force-search5How to find largest triangle in convex hull aside from brute force searchwillc22009-10-25T16:46:20Z2009-10-25T20:35:41Z
<p>Given a convex polygon, how do I find the 3 points that define a triangle with the greatest area. </p>
<p><strong>Related:</strong> Is it true that the circumcircle of that triangle would also define the minimum bounding circle of the polygon? </p>
http://stackoverflow.com/questions/1619177/switching-off-sound-in-an-iphone-application/1621202#16212022Answer by willc2 for Switching Off Sound in an iPhone Applicationwillc22009-10-25T15:36:54Z2009-10-25T15:36:54Z<p>In the view controller that plays your sounds, add an ivar with a @property </p>
<pre><code>BOOL muteSoundFlag // as ivar of view controller
@property (nonatomic, retain) BOOL muteSound; // in header
@synthesize muteSound; // in implementation
</code></pre>
<p>Wrap all your sound playing code in an if...block</p>
<pre><code>if (!self.muteSoundFlag) {
// your sound player code
}
</code></pre>
<p>When you want sound muted, set the flag to true</p>
<p>self.muteSoundFlag = YES;</p>
http://stackoverflow.com/questions/1620207/how-to-find-code-for-model-no-of-iphone/1621069#16210691Answer by willc2 for how to find code for model no of iphonewillc22009-10-25T14:36:03Z2009-10-25T14:36:03Z<pre><code>UIDevice *myCurrentDevice = [UIDevice currentDevice];
NSLog(@"%@", [myCurrentDevice model]);
NSLog(@"%@", [myCurrentDevice systemName]);
NSLog(@"%@", [myCurrentDevice systemVersion]);
</code></pre>
<p>// result </p>
<p>iPhone<br />
iPhone OS<br />
3.1.2</p>
http://stackoverflow.com/questions/1618398/given-a-set-of-points-how-do-i-find-the-two-points-that-are-farthest-from-each-o7Given a set of points, how do I find the two points that are farthest from each other?willc22009-10-24T16:10:16Z2009-10-25T02:49:46Z
<p>I could compute the distance between each point and take the largest but that doesn't sound like a very efficient way to do it when there are a large (> 1000) number of points. </p>
<p><em>Note: This is for iPhone so I don't have a ton of processing power.</em></p>
http://stackoverflow.com/questions/1082553/is-it-possible-to-write-or-change-exif-data-of-images-saved-to-iphone-photo-libra0Is it possible to write or change EXIF data of images saved to iPhone photo librarywillc22009-07-04T16:45:55Z2009-10-22T23:02:52Z
<p>I would like to add some custom data to an image the user generates in my app, no more than 1kb tops. I could probably hide the data in the image, but I want to do this in a way that will resist resizing but not deliberate deletion of EXIF tags (say, for privacy reasons).</p>
<p>Is this possible using the current public SDK 3.0?</p>
http://stackoverflow.com/questions/1117211/how-would-i-tint-an-image-programatically-on-the-iphone4How would I tint an image programatically on the iPhone?willc22009-07-12T23:38:02Z2009-10-22T20:44:16Z
<p>I would like to tint an image with a color reference. The results should look like the Multiply blending mode in Photoshop, where <em>whites</em> would be replaced with <em>tint</em>:</p>
<p><img src="http://img13.imageshack.us/img13/143/colortintexample.png" alt="alt text" /></p>
<p>I will be changing the color value continuously.</p>
<p><strong>Follow up:</strong> I would put the code to do this in my ImageView's drawRect: method, right?</p>
<p>As always, a <em>code snippet</em> would greatly aid in my understanding, as opposed to a link.</p>
<p><strong>Update:</strong> Subclassing a UIImageView with the code <strong>Ramin</strong> suggested. </p>
<p>I put this in viewDidLoad: of my view controller:</p>
<pre><code>[self.lena setImage:[UIImage imageNamed:kImageName]];
[self.lena setOverlayColor:[UIColor blueColor]];
[super viewDidLoad];
</code></pre>
<p>I see the image, but it is not being tinted. I also tried loading other images, setting the image in IB, and calling setNeedsDisplay: in my view controller.</p>
<p><strong>Update</strong>: drawRect: is not being called.</p>
<p><strong>Final update:</strong> I found an old project that had an imageView set up properly so I could test Ramin's code and it works like a charm!</p>
<p><strong>Final, final update:</strong></p>
<p>For those of you just learning about Core Graphics, here is the simplest thing that could possibly work.</p>
<p>In your subclassed UIView:</p>
<pre><code>- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColor(context, CGColorGetComponents([UIColor colorWithRed:0.5 green:0.5 blue:0 alpha:1].CGColor)); // don't make color too saturated
CGContextFillRect(context, rect); // draw base
[[UIImage imageNamed:@"someImage.png"] drawInRect: rect blendMode:kCGBlendModeOverlay alpha:1.0]; // draw image
}
</code></pre>
http://stackoverflow.com/questions/1594288/what-is-the-logic-to-move-a-paddle-left-and-right-automatically-on-the-iphone/1602423#16024230Answer by willc2 for What is the logic to move a paddle left and right automatically on the iPhone?willc22009-10-21T17:46:09Z2009-10-21T17:46:09Z<p>If you created the <strong>UIImageView</strong> in Interface Builder, make sure you connect it up to your IBOutlet or it won't respond to you setting the <strong>.center</strong> property. This has bitten me many times.</p>
http://stackoverflow.com/questions/1584455/how-to-use-performselectorwithobjectafterdelay-on-a-method-with-multiple-argum0How to use performSelector:withObject:afterDelay: on a method with multiple argumentswillc22009-10-18T09:28:33Z2009-10-18T19:18:53Z
<p>Let's say I have a method with this signature:</p>
<pre><code> -(void)plotPoly:(Polygon *)poly WithColor:(UIColor *)color AndFill:(BOOL)filled;
</code></pre>
<p>How do I get that <strong>UIColor</strong> and <strong>BOOL</strong> in there as well as the <strong>Polygon</strong>?</p>
<p>Should I wrap them in a <strong>NSArray</strong> and pull them out inside the called method? That would mean I have to change the method sig, right?</p>
<p>Is there a more elegant way to do it?</p>
http://stackoverflow.com/questions/1584647/should-i-initialize-all-primitive-data-types-to-safe-values-in-obj-c0Should I initialize ALL primitive data types to 'safe' values in Obj-C?willc22009-10-18T11:27:02Z2009-10-18T13:06:29Z
<p>Is there any primitive data type that it's safe to not initialize?</p>
<p>How about structs like CGPoints or NSRects?</p>
http://stackoverflow.com/questions/1550206/how-to-crossfade-between-2-images-on-iphone-using-core-animation0How to crossfade between 2 images on iPhone using Core Animationwillc22009-10-11T08:52:51Z2009-10-15T03:31:28Z
<p>I'm doing this to learn how to work with Core Animation animatable properties on iPhone (not to learn how to crossfade images, per se).</p>
<p>Reading similar questions on SO leads me to believe it can be done by animating the <strong>.contents</strong> property of the <strong>UIImageView's</strong> <strong>layer</strong> like so:</p>
<pre><code>UIImage *image1 = [UIImage imageNamed:@"someImage1.png"];
UIImage *image2 = [UIImage imageNamed:@"someImage2.png"];
self.imageView.image = image1;
[self.view addSubview:self.imageView];
CABasicAnimation *crossFade = [CABasicAnimation animationWithKeyPath:@"contents"];
crossFade.duration = 5.0;
self.imageView.layer.contents = image2;
[self.imageView.layer addAnimation:crossFade forKey:@"animateContents"];
</code></pre>
<p>Did I get a detail wrong or is this not possible. </p>
<p><strong>Update:</strong> the above code produces a blank UIImageView. When I change this line:</p>
<pre><code>self.imageView.layer.contents = image2.CGImage;
</code></pre>
<p>...I can see the image now but it does not fade in, it just appears instantly.</p>
http://stackoverflow.com/questions/1546765/objective-c-call-a-method-you-just-created/1547149#1547149-1Answer by willc2 for Objective-C: call a method you just createdwillc22009-10-10T05:32:14Z2009-10-10T05:32:14Z<p>To paraphrase Martin, </p>
<p>In your <strong>.m</strong> file, make sure your method <strong>-checkIfInputCorrect</strong> is placed so that it's physically above the method that has the line: <strong>[self checkIfInputCorrect];</strong></p>
http://stackoverflow.com/questions/1537629/can-the-size-of-a-stretchable-button-image-be-animated-in-cocoa-touch0Can the size of a stretchable button image be animated in Cocoa Touch?willc22009-10-08T12:58:15Z2009-10-08T14:38:36Z
<p>I'm creating a UIButton with a <strong>stretchableImageWithLeftCapWidth:topCapHeight:</strong></p>
<p>I would like to change it's size smoothly with Core Animation like so:</p>
<pre><code>float shrinkFactor = 0.2;
NSTimeInterval slowSpeed = 5.0;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:slowSpeed];
UIButton *thisButton = (UIButton *)[self.view viewWithTag:2];
thisButton.frame = CGRectMake(thisButton.frame.origin.x, thisButton.frame.origin.y, buttonStretchedWidth * shrinkFactor, thisButton.frame.size.height);
[UIView commitAnimations];
</code></pre>
<p>The button image size doesn't animate, it just snaps to the new size. </p>
<p>When I make the <strong>backgroundColor</strong> of the button visible, I see the frame itself animates correctly.</p>
<p>Am I missing something or is the image stretching not animatable?</p>
http://stackoverflow.com/questions/1449109/why-doesnt-this-crash-arent-i-dividing-by-zero-here4Why doesn't this crash? Aren't I dividing by zero here?willc22009-09-19T18:00:39Z2009-09-20T08:26:16Z
<p>I'm getting the slope of a line bounded by two points</p>
<pre><code>float slopeXY(CGPoint p1, CGPoint p2)
{
return ((p2.y - p1.y) / (p2.x - p1.x));
}
</code></pre>
<p>If I give it a zero-sized line,</p>
<pre><code>CGPoint p1 = CGPointMake(0, 10);
CGPoint p2 = CGPointMake(0, 10);
float sxy = slopeXY(p1, p2);
</code></pre>
<p>I don't get a divide by zero error.</p>
http://stackoverflow.com/questions/1447992/im-creating-a-polygon-class-in-objective-c-should-centroid-calculation-be-a-fun1I'm creating a Polygon class in Objective-C, should centroid calculation be a function or a method?willc22009-09-19T06:58:45Z2009-09-19T13:51:01Z
<p>I'm doing this to learn about class creation and to test geometry routines. As I build the class I will add other polygon-related functionality like getting the bounding box, determining convexity, turning the poly into triangles and the like.</p>
<p>Is it best to put that kind of code in functions or in methods of the class?</p>
http://stackoverflow.com/questions/1438101/can-i-shift-the-objects-in-a-nsmutablearray-without-creating-a-temporary-array1Can I shift the objects in a NSMutableArray without creating a temporary array?willc22009-09-17T10:56:08Z2009-09-18T11:12:45Z
<p>I thought I had it with,</p>
<pre><code>void shiftArray(NSMutableArray *mutableArray, NSUInteger shift)
{
for (NSUInteger i = 0; i < [mutableArray count]; i++) {
NSUInteger newIndex = (i + shift) % [mutableArray count];
[mutableArray exchangeObjectAtIndex:i withObjectAtIndex:newIndex];
}
}
</code></pre>
<p>which turns 0,1,2,3,4 into 0,2,3,4,1 when I shift by one.</p>
<p>The expected result is 4,0,1,2,3</p>
<p>I feel like I'm missing something obvious...</p>
<p><strong>Update:</strong> Thanks Matthieu, this is what my function looks like now.</p>
<pre><code>void shiftArrayRight(NSMutableArray *mutableArray, NSUInteger shift) {
for (NSUInteger i = shift; i > 0; i--) {
NSObject *obj = [mutableArray lastObject];
[mutableArray insertObject:obj atIndex:0];
[mutableArray removeLastObject];
}
}
</code></pre>
<p>I didn't know you could make a generic NSObject and put some subclass in it. It's all just pointers so I guess it's OK, right?</p>
<p>It's hard to break the habit of thinking of these objects as <strong>bags</strong> of stuff rather than <strong>pointers</strong> to the bag.</p>
http://stackoverflow.com/questions/1344767/how-to-draw-a-shape-on-top-of-a-uiimage-while-respecting-the-images-alpha-mask0How to draw a shape on top of a UIImage while respecting the image's alpha maskwillc22009-08-28T02:40:23Z2009-09-17T12:53:41Z
<p>I need a UIImageView that can draw itself in color or b/w according to a flag:</p>
<pre><code> BOOL isGrey;
</code></pre>
<p>I'm trying to do it by drawing a black rectangle on top of the original image with the Quartz blendmode set to Color. This works except it doesn't respect the image's alpha mask.</p>
<p>See illustration:
<img src="http://img214.imageshack.us/img214/1407/converttogreyscaleillo.png" alt="alt text" /></p>
<p>Searching Google and SO, I found and tried several solutions but none respect the mask either.</p>
<p>Here is the code that produces the 'What I get' image above:</p>
<pre><code> - (void)drawRect:(CGRect)rect {
if (isGrey) {
CGContextRef context = UIGraphicsGetCurrentContext();
// flip orientation
CGContextTranslateCTM(context, 0, self.bounds.size.height);
CGContextScaleCTM(context, 1.0, -1.0);
// draw the image
CGContextDrawImage(context, self.bounds, self.image.CGImage);
// set the blend mode and draw rectangle on top of image
CGContextSetBlendMode(context, kCGBlendModeSaturation);
CGContextSetRGBFillColor(context, 0.0, 0.0, 0.0, 1.0);
CGContextFillRect(context, rect);
} else {
[self.image drawInRect:rect];
}
}
</code></pre>
<p>Is there some Quartz drawing mode that I'm forgetting to set? I've looked thru the Quartz Programming Guide but is so hard to extract the one bit of info you need from the overlapping and hyperlinked subjects.</p>
<p><em>Obviously I'm looking for a general solution that will apply to images with any masked shape, not just the circle shown.</em></p>
http://stackoverflow.com/questions/1432015/terminology-question-regarding-looping-thru-an-nsarray-in-objective-c0Terminology question regarding looping thru an NSArray in Objective-Cwillc22009-09-16T09:44:55Z2009-09-17T08:41:18Z
<p>When you have an NSArray and you want to evaluate and change the elements, you can't change the array from inside the loop. So, you create a mutable copy that <strong>can</strong> be changed.</p>
<p>code example:</p>
<pre><code>NSMutableArray *bin = [NSMutableArray arrayWithObjects:@"0", @"1", @"2", @"3", @"4", @"5", @"6", @"7", nil];
NSMutableArray *list = [NSMutableArray arrayWithObjects:@"a1", @"b2", @"c3", @"e4", nil];
NSMutableArray *listHolder = list; // can't mutate 'list' within loop so create a holder
for (int i = 0; i < [list count]; i++) {
[listHolder replaceObjectAtIndex:i withObject:[bin objectAtIndex:i]];
}
</code></pre>
<p>What is that second array <strong>listHolder</strong> called? I mean, what term is used to refer to an array in this context. </p>
http://stackoverflow.com/questions/1437153/recommended-mac-gui-data-entry-tools-for-populating-sqlite-databases-for-iphone-a0Recommended Mac GUI data entry tools for populating SQLite databases for iPhone app use?willc22009-09-17T07:05:09Z2009-09-17T07:13:30Z
<p>While making an iPhone app that refers to a (not yet existing) SQLite db</p>
<p>Are there any good, cheap programs for data entry? </p>
http://stackoverflow.com/questions/1437077/using-xcode-3-2-which-performance-tool-to-see-how-much-memory-my-iphone-app-is-u1Using Xcode 3.2, which performance tool to see how much memory my iPhone app is using?willc22009-09-17T06:41:56Z2009-09-17T06:56:25Z
<p>Also, is running an app in the simulator sufficient to get a ball park estimate or will I get very different values from running on the device?</p>
http://stackoverflow.com/questions/1912262/homework-need-guidance-on-creating-an-oo-non-graphical-text-adventure-game/1912380#1912380Comment by willc2 on Homework: Need guidance on creating an OO non-graphical/text adventure gamewillc22009-12-17T13:47:57Z2009-12-17T13:47:57ZI have to disagree with Gishu. Code can ground abstract concepts. We shouldn't punish some learners on the off chance that others might not pay their dues properly. In any case, this is hardly a complete program.http://stackoverflow.com/questions/1904695/how-to-tell-if-a-subview-was-tapped-twice/1905835#1905835Comment by willc2 on How to tell if a subview was tapped twicewillc22009-12-16T15:43:34Z2009-12-16T15:43:34ZThis will print how many times a specific view has been touched.http://stackoverflow.com/questions/1849873/how-do-i-make-a-uipickerview-in-a-uiactionsheet/1852388#1852388Comment by willc2 on How do I make a UIPickerView in a UIActionSheetwillc22009-12-15T08:03:26Z2009-12-15T08:03:26ZStackOverflow is a little different than other message forums that you may be used to. You comment by clicking the "add comment" text at the bottom of someone else's answer, not by creating another answer. Welcome, this site is awesome. http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrectComment by willc2 on What is your longest-held programming assumption that turned out to be incorrect?willc22009-12-06T14:25:31Z2009-12-06T14:25:31Z@mmyers, some people don't look at the letters in your name after the first time. They subsequently (mis)type it from audio memory.http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider/1763281#1763281Comment by willc2 on How to get the center of the thumb image of UISliderwillc22009-11-25T19:21:26Z2009-11-25T19:21:26ZStill not getting the right value. When testing, I'm setting a transparent view's center point using your computed x,y point. http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider/1763281#1763281Comment by willc2 on How to get the center of the thumb image of UISliderwillc22009-11-25T16:09:04Z2009-11-25T16:09:04ZAlso, shouldn't sliderFrame.x be sliderFrame.origin.x & sliderFrame.size.width?http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider/1763281#1763281Comment by willc2 on How to get the center of the thumb image of UISliderwillc22009-11-25T16:05:45Z2009-11-25T16:05:45ZAssuming slider range 0..1, your point is correct when the slider.value is 0, but gets more off as slider.value changes. Also, there's a typo in the x equation.http://stackoverflow.com/questions/1784745/iphone-fluid-simulation/1785088#1785088Comment by willc2 on iPhone fluid simulationwillc22009-11-23T22:29:04Z2009-11-23T22:29:04ZAutodesk Fluid is a free high-performance fluid simulation on the app store. I don't know how they did it but it's clearly possible.http://stackoverflow.com/questions/1779966/how-do-i-release-this-cgpath-when-i-need-to-return-it/1779975#1779975Comment by willc2 on How do I release this CGPath when I need to return itwillc22009-11-23T10:20:41Z2009-11-23T10:20:41ZI compute the path, then draw it, then release it. This doesn't cause a crash but since the release is in a different method than the creation of the path, Clang complains at the end of the creation method. Do you see what I mean?http://stackoverflow.com/questions/1779966/how-do-i-release-this-cgpath-when-i-need-to-return-it/1779975#1779975Comment by willc2 on How do I release this CGPath when I need to return itwillc22009-11-22T21:19:26Z2009-11-22T21:19:26Zin the actual program, I call the method lots to update a path in real time. I put a release after it gets drawn. Is there any way to make Clang stop bugging me, though?http://stackoverflow.com/questions/1769430/looking-for-concept-for-managing-game-level-views-level-selection-views-prefereComment by willc2 on Looking for concept for managing game level views, level selection views, preferences view, storing levels, environment variables.willc22009-11-21T14:12:58Z2009-11-21T14:12:58ZI think the intent is to make the long question easier to skim. I did that too until I realized that it was distracting to the reader.http://stackoverflow.com/questions/1747214/sorting-the-character-araray/1747256#1747256Comment by willc2 on sorting the character araraywillc22009-11-17T13:37:07Z2009-11-17T13:37:07Z+1 for answering the question. This is a Q & A site, not a Q & Lecture site.http://stackoverflow.com/questions/300673/is-it-true-that-one-should-not-use-nslog-on-production-codeComment by willc2 on Is it true that one should not use NSLog() on production code?willc22009-11-11T11:41:00Z2009-11-11T11:41:00ZNSLog() inside of a frequent loop will absolutely murder your performance, he said, having found out the hard way.http://stackoverflow.com/questions/1710549/d-doesnt-show-integer-properlyComment by willc2 on %d doesn't show integer properlywillc22009-11-11T11:36:33Z2009-11-11T11:36:33ZYou should start class names with a capital so your code looks right to other Cocoa programmers.http://stackoverflow.com/questions/1711335/how-do-you-normally-make-a-program-look-beautiful/1711352#1711352Comment by willc2 on How do you normally make a program look beautiful?willc22009-11-11T01:25:55Z2009-11-11T01:25:55ZAs a graphic designer I can tell you that the "It" you are referring to is thousands of hours of study and practice. It is not magic. That said, if you don't want to put in at least 1000-2000 hours learning design at a pro level, hire someone who already did.