User Jablair - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:10:06Zhttp://stackoverflow.com/feeds/user/24168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1787818/setting-clearbuttonmode-for-uisearchbar0Setting clearButtonMode for UISearchBarJablair2009-11-24T04:38:50Z2009-11-24T04:38:50Z
<p>Haven't looked at this in a while, so I could be misremembering, but I thought it was possible to set the clearButtonMode of a UISearchBar without walking the subviews to find the UITextField instance. I'm looking now and not seeing anything, so it's entirely possible that I was hallucinating.</p>
http://stackoverflow.com/questions/1579245/determine-local-drive-from-mditemref/1586945#15869450Answer by Jablair for Determine local drive from MDItemRefJablair2009-10-19T04:25:31Z2009-10-19T04:25:31Z<p>Are you only looking on non-boot drives or on external drives (most of the time they mean the same, but they could be different on a on a system with multiple partitions or multiple internal drives (Mac Pro).</p>
<p>If you only want non-internal drives, you can look to see if the if the path is prefixed with a removable drive mount point.</p>
<p>Similar to Dave's code:</p>
<pre><code>MDItemRef myItem = ...;
NSString * itemPath = (NSString *)MDItemCopyAttribute(myItem, kMDItemPath);
NSArray * removableVolumes = [[NSWorkspace sharedWorkspace] mountedRemovableMedia];
BOOL externalVolume = NO;
for (NSString *eachVolume in removableVolumes) {
if ([itemPath hasPrefix: eachVolume]) {
externalVolume = YES;
break;
}
}
</code></pre>
<p>Upside - ignores internal drives (if that's what you're going for).<br />
Downside - includes mounted drive images (in your case, if they're Spotlight-indexed, I suppose).</p>
<p>This actually needs a bit of work - it could return a false positive if an internal drive mount point has the same prefix as an external drive - for example, internal drive mounted at "/Volumes/drive_2" and external drive "/Volumes/drive".</p>
http://stackoverflow.com/questions/1503100/how-to-get-latitude-longitude-by-address-with-iphone-sdk/1504269#15042690Answer by Jablair for how to get latitude\longitude by address with iphone sdk?Jablair2009-10-01T14:22:35Z2009-10-01T14:22:35Z<p>There's also CoreGeoLocation, which wraps up the functionality in a framework (Mac) or static library (iPhone). Supports lookups through Google or Yahoo, if you have a preference for one over the other.</p>
<p><a href="http://github.com/thekarladam/CoreGeoLocation" rel="nofollow">http://github.com/thekarladam/CoreGeoLocation</a></p>
http://stackoverflow.com/questions/1482564/iphone-setting-nsstring-from-array-double-standards/1482677#14826771Answer by Jablair for IPhone - Setting NSString from array, double standards!Jablair2009-09-27T02:51:12Z2009-09-27T02:51:12Z<p>Like benzado says, it's an issue retaining the <code>selectedCategory</code> value in <code>ButtonsPageViewController</code>.</p>
<p>Are you using <code>@property</code> and <code>@synthesize</code> or are you writing your own accessors? If it's the former, you probably need to look at the property declaration attributes. Otherwise, it's probably a retain/release thing in your custom accessor.</p>
<p>The <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/ObjectiveC/Articles/ocProperties.html#//apple%5Fref/doc/uid/TP30001163-CH17-SW1" rel="nofollow">Declared Properties</a> section of <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html#//apple%5Fref/doc/uid/TP30001163-CH1-SW2" rel="nofollow">The Objective-C 2.0 Programming Laungauge</a> is a good resource for rules of declaring synthesized accessors.</p>
http://stackoverflow.com/questions/205431/rounded-corners-on-uiimage4Rounded Corners on UIImageJablair2008-10-15T16:32:50Z2009-09-22T20:14:52Z
<p>I'm trying to draw images on the iPhone using with rounded corners, a la the contact images in the Contacts app. I've got code that generally work, but it occasionally crashes inside of the UIImage drawing routines with an <code>EXEC_BAD_ACCESS</code> - <code>KERN_INVALID_ADDRESS</code>. I thought this might be related to the <a href="http://stackoverflow.com/questions/158914/cropping-a-uiimage">cropping question</a> I asked a few weeks back, but I believe I'm setting up the clipping path correctly.</p>
<p>Here's the code I'm using - when it doesn't crash, the result looks fine and anybody looking to get a similar look is free to borrow the code.</p>
<pre><code>- (UIImage *)borderedImageWithRect: (CGRect)dstRect radius:(CGFloat)radius {
UIImage *maskedImage = nil;
radius = MIN(radius, .5 * MIN(CGRectGetWidth(dstRect), CGRectGetHeight(dstRect)));
CGRect interiorRect = CGRectInset(dstRect, radius, radius);
UIGraphicsBeginImageContext(dstRect.size);
CGContextRef maskedContextRef = UIGraphicsGetCurrentContext();
CGContextSaveGState(maskedContextRef);
CGMutablePathRef borderPath = CGPathCreateMutable();
CGPathAddArc(borderPath, NULL, CGRectGetMinX(interiorRect), CGRectGetMinY(interiorRect), radius, PNDegreeToRadian(180), PNDegreeToRadian(270), NO);
CGPathAddArc(borderPath, NULL, CGRectGetMaxX(interiorRect), CGRectGetMinY(interiorRect), radius, PNDegreeToRadian(270.0), PNDegreeToRadian(360.0), NO);
CGPathAddArc(borderPath, NULL, CGRectGetMaxX(interiorRect), CGRectGetMaxY(interiorRect), radius, PNDegreeToRadian(0.0), PNDegreeToRadian(90.0), NO);
CGPathAddArc(borderPath, NULL, CGRectGetMinX(interiorRect), CGRectGetMaxY(interiorRect), radius, PNDegreeToRadian(90.0), PNDegreeToRadian(180.0), NO);
CGContextBeginPath(maskedContextRef);
CGContextAddPath(maskedContextRef, borderPath);
CGContextClosePath(maskedContextRef);
CGContextClip(maskedContextRef);
[self drawInRect: dstRect];
maskedImage = UIGraphicsGetImageFromCurrentImageContext();
CGContextRestoreGState(maskedContextRef);
UIGraphicsEndImageContext();
return maskedImage;
}
</code></pre>
<p>and here's the crash log. It looks the same whenever I get one of these crashes</p>
<pre>
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x6e2e6181
Crashed Thread: 0
Thread 0 Crashed:
0 com.apple.CoreGraphics 0x30fe56d8 CGGStateGetRenderingIntent + 4
1 libRIP.A.dylib 0x33c4a7d8 ripc_RenderImage + 104
2 libRIP.A.dylib 0x33c51868 ripc_DrawImage + 3860
3 com.apple.CoreGraphics 0x30fecad4 CGContextDelegateDrawImage + 80
4 com.apple.CoreGraphics 0x30feca40 CGContextDrawImage + 368
5 UIKit 0x30a6a708 -[UIImage drawInRect:blendMode:alpha:] + 1460
6 UIKit 0x30a66904 -[UIImage drawInRect:] + 72
7 MyApp 0x0003f8a8 -[UIImage(PNAdditions) borderedImageWithRect:radius:] (UIImage+PNAdditions.m:187)
</pre>
http://stackoverflow.com/questions/1392347/how-to-prevent-a-uiview-from-sliding-down-underneath-the-tableview/1408963#14089631Answer by Jablair for How to prevent a UiView from sliding down underneath the TableView?Jablair2009-09-11T04:24:29Z2009-09-11T04:24:29Z<p>To build off gabtub's answer, the UIView containing your table view and your bottom view doesn't need to implement the UITableViewDelegate and UITableViewDataSource methods.</p>
<p>Since it sounds like you're building with a view controller, I'd make your main view controller a subclass of UIViewController (instead of using UITableViewController). You could then add your UITableView and your UIView the the UIViewController's view instance.</p>
<p>I'd then make your UIViewController subclass implement the UITableViewDelegate and UITableViewDataSource protocols - you'll end up with something that looks similar (code-wise) to your old UITableViewController subclass, but it's view property will be the underlying UIView instead of UITableView instance (if you poke around in the debugger, you can see the [UITableViewController view] and [UITableViewController tableView] return the same object)</p>
<p>One of the advantages over gabtub's suggestion is it saves you from creating a one-off UIView subclass, since you've probably already got a one-off UIViewController subclass (or, previously had a one-off UITableViewController subclass).</p>
http://stackoverflow.com/questions/773657/uitableview-delete-button/789743#7897430Answer by Jablair for UITableView - delete buttonJablair2009-04-25T21:17:07Z2009-04-25T21:17:07Z<p>Building off of E-ploko, may sure you're not positioning things absolutely. ie, if you want something to appear 10 pixels from the right boundary of the content view, calculate what the position should be, don't assume a constant width.</p>
http://stackoverflow.com/questions/158914/cropping-a-uiimage3Cropping a UIImageJablair2008-10-01T18:04:26Z2009-04-03T04:31:12Z
<p>I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a <code>UIImage</code> and return a small, square representation of an image, similar to what's seen in the album view of the Photos app. (I know I could use a <code>UIImageView</code> and adjust the crop mode to achieve the same results, but these images are sometimes displayed in <code>UIWebViews</code>).</p>
<p>I've started to notice some crashes in this code and I'm a bit stumped. I've got two different theories and I'm wondering if either is on-base.</p>
<p>Theory 1) I achieve the cropping by drawing into an offscreen image context of my target size. Since I want the center portion of the image, I set the <code>CGRect</code> argument passed to <code>drawInRect</code> to something that's larger than the bounds of my image context. I was hoping this was Kosher, but am I instead attempting to draw over other memory that I shouldn't be touching?</p>
<p>Theory 2) I'm doing all of this in a background thread. I know there are portions of UIKit that are restricted to the main thread. I was assuming / hoping that drawing to an offscreen view wasn't one of these. Am I wrong?</p>
<p>(Oh, how I miss <code>NSImage's drawInRect:fromRect:operation:fraction:</code> method.)</p>
http://stackoverflow.com/questions/205431/rounded-corners-on-uiimage/510760#5107600Answer by Jablair for Rounded Corners on UIImageJablair2009-02-04T10:10:58Z2009-02-04T10:10:58Z<p>I actually had a chance to talk about this with somebody from Apple at the iPhone Tech Talk in New York. When we talked about it, he was pretty sure it wasn't a threading issued. Instead, he thought that I needed to retain the graphics context that was generated when calling <code>UIGraphicsBeginImageContext</code>. This seems to violate the general rules dealing with retain rules and naming schemes, but this fellow was pretty sure he'd seen the issue previously.</p>
<p>If the memory was getting scribbled, perhaps by another thread, that would certainly explain why I was only seeing the issue occasionally.</p>
<p>I haven't had time to revisit the code and test out the fix, but PCheese's comment made me realize I hadn't posted the info here.</p>
<p>...unless I wrote that down wrong and <code>UIGraphicsBeginImageContext</code> should've been <code>CGBitmapContextCreate</code>...</p>
http://stackoverflow.com/questions/249849/uitextfield-isfirstresponder-returns-false-even-though-field-is-currently-edit/250217#2502176Answer by Jablair for -[UITextField isFirstResponder] returns false even though field is currently editingJablair2008-10-30T13:44:50Z2008-10-30T13:44:50Z<p>What about checking the value of the editing property, ie [myTextField isEditing]?</p>
<p>I think your button takes over first responder status when you tap it.</p>
http://stackoverflow.com/questions/235120/whats-the-uitableview-index-magnifying-glass-character/235494#2354941Answer by Jablair for What's the UITableView index magnifying glass character?Jablair2008-10-24T22:37:22Z2008-10-24T22:37:22Z<p>You can certainly put a Unicode character in the table view index (I've done this with other characters) and put your header in the first table section in lieu of of the tableViewHeader. That said, I've yet to find the magnifying glass in any of the unicode references. The closes I've found is the Telephone Recorder symbol - ⌕ (\u2315). Unfortunately, it points in the wrong direction and the "handle" extends into the "magnifying glass."</p>
http://stackoverflow.com/questions/212215/display-a-loading-icon-while-a-network-resource-is-being-downloaded/213243#2132430Answer by Jablair for Display a loading icon while a network resource is being downloadedJablair2008-10-17T18:17:25Z2008-10-17T18:17:25Z<p>Ben answer looks pretty similar to what I'm doing - your guess about the thread is probably accurate. Are you using NSURLConnection to handle your downloading? If so, are you using the synchronous or asynchronous version? If it's the synchronous version and you're simply starting and stopping the animation around the synchronous call, then the UI isn't updating until after the you've stopped the animation.</p>
http://stackoverflow.com/questions/205386/cocoa-bad-habits/205618#2056185Answer by Jablair for Cocoa Bad HabitsJablair2008-10-15T17:20:08Z2008-10-15T17:20:08Z<p>I get lazy about using accessors inside of classes. Usually, the biggest problem is that I can't easily tell the scope of the variable at a quick glance. Then I spent a few hours last week debugging a memory corruption issues that was due to using</p>
<pre><code>self.displayName = name
</code></pre>
<p>in some places and </p>
<pre><code>displayName = name
</code></pre>
<p>in others. I was happy when I found it and my app stopped crashing. I wasn't so happy that I wasted several hours looking for such an avoidable mistake.</p>
http://stackoverflow.com/questions/111517/how-can-i-automatically-add-properties-in-objective-c/184750#1847500Answer by Jablair for How can I automatically add properties in Objective-C?Jablair2008-10-08T20:30:50Z2008-10-08T20:30:50Z<p>You could look at Andrew Pang's <a href="http://realmacforge.com/svn/trunk/RMModelObject/README.txt" rel="nofollow">RMModelObject</a> - I haven't used it, but it acts as a object base class that simplifies model creation.</p>
<p>I haven't used it, but here's some of what's highlighted in the readme:</p>
<blockquote>
<ul>
<li>no need to declare instance variables,</li>
<li>no need to write accessor methods,</li>
<li>free NSCopying protocol support (<code>-copyWithZone:</code>),</li>
<li>free NSCoding protocol support (<code>-initWithCoder:</code>, <code>-encodeWithCoder:</code>),</li>
<li>free <code>-isEqual:</code> and -hash` implementation,</li>
<li>no need to write <code>-dealloc</code> in most cases.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/181485/determining-when-an-edge-connection-comes-back-after-a-dropout-on-an-iphone4Determining when an EDGE connection comes back after a dropout on an iPhoneJablair2008-10-08T05:44:44Z2008-10-08T06:18:50Z
<p>I've incorporated Apple's Reachability sample into my own project so I know whether or not I have a network connection - if I don't have a network connection, I don't bother sending out and requests. I decided to go with the status notification implementation because it seemed easier to have the reachablity updated in the background and have the current results available immediately as opposed to kicking off a synchronous request whenever I want to make a network connection.</p>
<p>My problem is that I start getting false negatives when on an EDGE network - the phone has connectivity, but the app thinks this isn't the case. My understanding is you don't get a notification when an EDGE connection, so my assumption is that I lost and regained the connection at some point. Restarting the app is usually sufficient to see the network connection.</p>
<p>This isn't an optimal solution, so I was wondering if anybody else came across this problem and had any thoughts on a solutions.</p>
<p>(I don't know whether this applies to 3G as well; I'm running a first gen iPhone).</p>
http://stackoverflow.com/questions/174315/how-do-you-document-your-source-code-in-xcode/174687#1746877Answer by Jablair for How do you document your source code in Xcode?Jablair2008-10-06T15:11:04Z2008-10-06T19:27:22Z<p>I use Doxygen and <a href="http://mattballdesign.com/blog/tag/doxyclean/" rel="nofollow">Doxyclean</a> to generate cleaner, more Apple-like documentation that what Doxygen natively produces.</p>
<p>(It should be said that Doxyclean doesn't reformat all Doxygen output - you're definitely getting a subset of the documentation you'd get straight from Doxygen).</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/158974#1589748Answer by Jablair for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Jablair2008-10-01T18:18:54Z2008-10-06T06:53:50Z<p>Might go without saying, but if you want to use intra-word navigation, make sure you change the key presets in for Spaces (in the Expose & Spaces preference pane), if you use it.</p>
<p>I switched Spaces to use Ctrl-Option Left/Right.</p>
<p>Edit: To set Spaces to Ctrl-Option Left/Right, select the "To switch between spaces:" popup and hold down the Option key. The first item will change from Ctrl Arrow Keys to Ctrl-Option Arrow Keys.</p>
http://stackoverflow.com/questions/171633/accessing-crash-logs-on-iphones-used-for-ad-hoc-distribution/172232#1722321Answer by Jablair for Accessing crash logs on iPhones used for ad hoc distributionJablair2008-10-05T16:32:56Z2008-10-05T16:32:56Z<p>Related to what @millenomi said - from what I can tell, crash logs are downloaded when you connect your iPhone to the computer, not when you sync the phone via iTunes. If your users have iTunes configured to not sync on connection, knowing this can save them the time of syncing. Along those same lines, if your application crashes while it's connected to a computer, simply syncing via iTunes is not enough to download crash logs - I've found that I need to disconnect and reconnect the phone to the computer.</p>
<p>I've only tested this on iPhones and iPod touches that are configured as development devices. Don't know if this makes any difference.</p>
http://stackoverflow.com/questions/1674081/visual-studio-solution-behavior-in-xcode/1674155#1674155Comment by Jablair on Visual Studio Solution behavior in XCodeJablair2009-11-04T19:49:45Z2009-11-04T19:49:45ZYou can also use the Target Info window to add dependencies:
1. Open the info window for the target
2. Select the General tab and click the + button under the Direct Dependencies box
3. Select the target you want to include from the subproject.
If you build the aggregate and something's changed in the dependency target, the dependency will get built as well.http://stackoverflow.com/questions/313639/using-one-delegate-to-manage-two-uiactionsheets/313667#313667Comment by Jablair on Using one delegate to manage two UIActionSheetsJablair2008-11-24T14:02:13Z2008-11-24T14:02:13ZStephen beat me to the punch. This is exactly the technique I use.
The tag property is quite handy for cases like this. I also use it when I dynamically generate UIs where the number of subviews is determined at runtime.http://stackoverflow.com/questions/235120/whats-the-uitableview-index-magnifying-glass-character/235494#235494Comment by Jablair on What's the UITableView index magnifying glass character?Jablair2008-10-25T00:56:29Z2008-10-25T00:56:29ZI grabbed a copy of Friend Book during the short time it was on the app store and it had a magnifying glass at the top of the index, which is why I assumed it was a Unicode character. But, like you said, I've yet to find it among any of the characters I've seen.http://stackoverflow.com/questions/205431/rounded-corners-on-uiimage/206005#206005Comment by Jablair on Rounded Corners on UIImageJablair2008-10-15T20:26:27Z2008-10-15T20:26:27ZThanks for the release reminder. I'd accidentally commented that out with some other debugging code, which I then trimmed before posting.
dstRect is the same, but the images could be different because they're downloaded from the web. I'm getting these from a tester - I haven't repro'd this myself.http://stackoverflow.com/questions/205431/rounded-corners-on-uiimage/205643#205643Comment by Jablair on Rounded Corners on UIImageJablair2008-10-15T19:03:03Z2008-10-15T19:03:03ZI tried masking with an image and was never able to get it to work reliably / at all. Do you have any pointers at how you got it to work?
It was a while ago, so I don't exactly remember what I tried, but I think I went through CGImageCreateWithMask, CGImageMaskCreate, and CGContextClipToMask.http://stackoverflow.com/questions/158914/cropping-a-uiimage/159303#159303Comment by Jablair on Cropping a UIImageJablair2008-10-01T21:25:35Z2008-10-01T21:25:35ZFair enough. I haven't repro'd this under the debugger, though I do have EXC_BAD_ACCESS messages in the crash log. When I posted this, I was working under the assumption that I'd made a stupid mistake in my implementation and somebody would jump on it (like forgetting a clipping path).