User Wevah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T18:46:52Zhttp://stackoverflow.com/feeds/user/14256http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810953/is-there-an-easy-way-to-tell-if-a-file-stream-has-opened-a-directory-instead-of-a/1810964#18109640Answer by Wevah for Is there an easy way to tell if a File stream has opened a directory instead of a file?Wevah2009-11-27T23:18:03Z2009-11-27T23:18:03Z<p>Can you check if the path points to a directory <em>before</em> you call fopen?</p>
http://stackoverflow.com/questions/1799728/how-to-make-nstableview-scroll-to-most-recently-added-row/1799810#17998106Answer by Wevah for How to make NSTableView scroll to most recently added row?Wevah2009-11-25T20:40:10Z2009-11-25T20:40:10Z<pre><code>NSInteger numberOfRows = [tableView numberOfRows];
if (numberOfRows > 0)
[tableView scrollRowToVisible:numberOfRows - 1];
</code></pre>
<p>Assuming you're adding rows to the end of the table.</p>
<p>(The reason I ask the table view for the number of rows instead of the data source is that this number is guaranteed to be the number of rows it knows about and can scroll to.)</p>
http://stackoverflow.com/questions/1780492/cant-access-any-outlets-after-using-loadnibnamed/1780661#17806610Answer by Wevah for Can't access any outlets after using loadNibNamedWevah2009-11-23T01:12:26Z2009-11-23T01:12:26Z<p>Uncheck "Visible At Launch" for the window in Interface Builder if you don't want it to show when you load the nib.</p>
http://stackoverflow.com/questions/1768870/question-regarding-the-warning-that-comes-everywhere/1770341#17703411Answer by Wevah for question regarding the warning that comes everywhereWevah2009-11-20T13:09:27Z2009-11-20T13:09:27Z<p>What you should probably be doing is:</p>
<p><code>extern NSString * const variable;</code></p>
<p>in the header and then</p>
<p><code>NSString * const variable = @"cool";</code></p>
<p>in an implementation (.m) file.</p>
<p>(Also note where the const is; you can see this pattern in Apple's own headers as, e.g., <code>FOUNDATION_EXPORT NSString * const NSFileTypeSocket</code> where <code>FOUNDATION_EXPORT</code> is a typedef of <code>extern</code>.)</p>
http://stackoverflow.com/questions/1760643/changing-more-than-one-style-attribute-with-javascript/1760657#17606571Answer by Wevah for Changing more than one style attribute with JavascriptWevah2009-11-19T03:19:50Z2009-11-19T03:19:50Z<p>It's just multiple calls:</p>
<pre><code>document.getElementById(today).style.visibility = "visible";
document.getElementById(today).style.color = "red";
document.getElementById(today).style.height = "5em";
</code></pre>
http://stackoverflow.com/questions/1753455/accessing-classes-in-a-library-file/1753463#17534633Answer by Wevah for Accessing classes in .a library file?Wevah2009-11-18T03:33:25Z2009-11-18T03:33:25Z<p>If you mean Code Sense/autocompletion, IIRC they're based off of included headers. If you don't have the headers, you won't get the hints.</p>
http://stackoverflow.com/questions/1753263/how-to-conditionally-use-a-new-cocoa-api/1753429#17534296Answer by Wevah for How to conditionally use a new Cocoa APIWevah2009-11-18T03:20:49Z2009-11-18T03:20:49Z<p>IIRC, you want to use the 10.6 SDK and set your deployment target (MACOSX_DEPLOYMENT_TARGET) to 10.4 so the 10.5/10.6 symbols are weak-linked. Then you can use the <code>respondsToSelector:</code> stuff and not get warnings.</p>
<p>Make sure you're checking that the object can respond to the selector, of course, or you will crash on 10.4/10.5.</p>
http://stackoverflow.com/questions/1732772/cocoa-webview-cross-thread-access/1732783#17327832Answer by Wevah for Cocoa WebView cross-thread accessWevah2009-11-14T00:37:37Z2009-11-14T00:37:37Z<p>Maybe <code>[yourWebView performSelectorOnMainThread:...]</code> and friends? (Or call a mediating controller class.)</p>
http://stackoverflow.com/questions/1727327/objective-c-code-obfuscation/1727348#17273481Answer by Wevah for Objective-C Code ObfuscationWevah2009-11-13T05:44:35Z2009-11-13T06:12:49Z<p>It's compiled to machine code; I'm not sure what point obfuscating it would have.</p>
<p>Edit: Of course, when I read "obfuscated C" in another answer, it all makes sense now. (I.e., not for "security", but "just because".) >_<</p>
http://stackoverflow.com/questions/1727102/nsarrays-primitive-types-and-boxing-oh-my/1727344#17273440Answer by Wevah for NSArray's, Primitive types and Boxing Oh My!Wevah2009-11-13T05:41:30Z2009-11-13T05:41:30Z<p>If you want to hold only NSIntegers, can you just use a regular C array?</p>
<p>Edit: If you're doing this for performance reasons, it sounds like a whole lot of premature optimization to me.</p>
http://stackoverflow.com/questions/1715228/there-any-way-to-differentiate-a-md5-of-a-sha-1/1715259#17152599Answer by Wevah for There any way to differentiate a md5 of a sha-1 ?Wevah2009-11-11T13:45:26Z2009-11-11T13:45:26Z<p>I'm not quite sure if this is what you're asking, but MD5 is 128 bits/32 hex digits, while SHA-1 is 160 bits/40 hex digits, so it's fairly easy to tell the difference between them (providing, of course, that you know that your hashes will be either MD5 or SHA-1 and not something else).</p>
<p>(If you're asking whether you can determine if a given MD5 hash is a hash of a hash or a hash of some other data, then I believe the answer is "no".)</p>
http://stackoverflow.com/questions/1684552/objective-c-returning-allocd-memory-in-a-function-bad/1684578#16845781Answer by Wevah for Objective-C returning alloc'd memory in a function == bad?Wevah2009-11-06T00:15:08Z2009-11-06T00:26:29Z<p>Autorelease guarantees the object until the release/drain of the current NSAutoreleasePool.</p>
<p>It's perfectly acceptable (and standard practice) to return an autoreleased object from a method.</p>
http://stackoverflow.com/questions/1678359/set-contents-of-webview-to-html-string-cocoa/1678384#16783846Answer by Wevah for Set contents of webview to html string (cocoa)Wevah2009-11-05T04:36:58Z2009-11-05T23:03:23Z<p><code>[[webView mainFrame] loadHTMLString:htmlString baseURL:someURL];</code></p>
<p>(Where <code>someURL</code> is used to resolve relative URLs in the HTML source.)</p>
http://stackoverflow.com/questions/1656308/obj-c-difference-between-fairfield-and-fairfield-with-at-string/1656310#16563108Answer by Wevah for Obj-C: Difference between "Fairfield" and @"Fairfield" (with at string)?Wevah2009-11-01T03:31:47Z2009-11-01T03:31:47Z<p><code>"@Fairfield"</code> is a normal C string with an '@' character in it. <code>@"Fairfield"</code> is an Objective-C string (<code>NSString</code> on OS X) with no literal '@' in it.</p>
<p>You cannot add C strings to Cocoa collections.</p>
http://stackoverflow.com/questions/1638120/in-cocoa-how-do-you-change-the-line-endings-of-a-file-to-lf/1638996#16389960Answer by Wevah for In Cocoa, how do you change the line endings of a file to LF?Wevah2009-10-28T18:02:21Z2009-10-28T21:43:35Z<p>I'm sure there are more memory-efficient ways, but this might do the job for you:</p>
<pre><code>NSStringEncoding usedEncoding;
NSMutableString *fileContents = [[NSMutableString alloc] initWithContentsOfFile:pathToFile usedEncoding:&usedEncoding error:nil];
// Normally you'd pass in an error and do the checking thing.
[fileContents replaceOccurrencesOfString:@"\n" withString:@"\r\n" options:NSLiteralSearch range:NSMakeRange(0, [fileContents length])];
// The other direction: [fileContents replaceOccurrencesOfString:@"\r\n" withString:@"\n" options:NSLiteralSearch range:NSMakeRange(0, [fileContents length])];
// Assumes you want to overwrite the file; again, normally you'd check for errors and such.
[fileContents writeToFile:filePath atomically:YES encoding:usedEncoding error:nil];
[fileContents release];
</code></pre>
<p><code>pathToFile</code> is obviously the path to the file; substitute the <code>initWithContentsOfURL:...</code>/<code>writeToURL:...</code> versions if you prefer.</p>
http://stackoverflow.com/questions/1616594/how-can-i-store-uibuttons-in-an-array/1616799#16167993Answer by Wevah for How can I store UIButtons in an array?Wevah2009-10-24T03:02:15Z2009-10-24T03:02:15Z<p><code>[NSArray arrayWithObjects:...]</code> returns an autoreleased array, so by the time you use it, it no longer exists and you end up messaging an invalid pointer. What you want is <code>[[NSArray alloc] initWithObjects:...]</code> (remembering to release it in your <code>dealloc</code>).</p>
http://stackoverflow.com/questions/1479657/removing-an-element-from-dom/1479681#14796810Answer by Wevah for Removing an element from DOMWevah2009-09-25T21:29:44Z2009-09-25T21:29:44Z<p>IIRC you shouldn't have to care, since JS is garbage collected. If it's a huge deal, you could try parsing in chunks called via <code>setTimeout()</code> with a very short interval.</p>
http://stackoverflow.com/questions/1462749/how-careful-are-you-with-your-return-types-in-objective-c/1462828#14628288Answer by Wevah for How careful are you with your return types in Objective-C?Wevah2009-09-22T21:49:37Z2009-09-23T10:02:47Z<p>I used to do the <code>return [NSArray arrayWithArray:someMutableArray]</code>, but I was slowly convinced that it doesn't offer any real benefit. If a caller of your API is treating a returned object as a subclass of the declared class, they're doing it wrong.</p>
<p>[NB: See bbum's caveat below.]</p>
http://stackoverflow.com/questions/1447017/xcode-how-to-turn-off-the-compiler-error-messages-in-the-source-code-window/1447033#14470331Answer by Wevah for XCode: How to turn off the compiler error messages in the source code window?Wevah2009-09-18T22:08:49Z2009-09-18T22:08:49Z<p>Preferences -> Building -> Message Bubbles -> Show during builds: Never</p>
http://stackoverflow.com/questions/1441946/how-to-get-nsimage-of-generic-folder-icon-on-os-x-10-5-and-10-6/1442057#14420575Answer by Wevah for How to get NSImage of generic folder icon on OS X 10.5 and 10.6Wevah2009-09-18T00:35:20Z2009-09-18T00:35:20Z<p><code>[[NSWorkspace sharedWorkspace] iconForFileType:NSFileTypeForHFSTypeCode(kGenericFolderIcon)]</code></p>
<p>(I think)</p>
http://stackoverflow.com/questions/1404776/test-nsmutable-array-from-plist-before-saving/1406549#14065490Answer by Wevah for Test NSmutable array from plist before savingWevah2009-09-10T17:11:41Z2009-09-10T17:11:41Z<p>The problem is probably that because <code>nil</code> is the terminator for variable argument lists, so if, say, <code>RescanPrompt</code> is <code>nil</code>, the object array will only contain up until that part (so you can't "remove if empty" since it won't exist in the dictionary in the first place). You should probably construct your dictionary piece by piece; something like:</p>
<pre><code>NSMutableDictionary *plistBootDict = [NSMutableDictionary dictionary];
if (Rescan)
[plistBootDisc setObject:Rescan forKey:@"Rescan"];
if (GUI)
[plistBootDisc setObject:GUI forKey:@"GUI"];
// etc
</code></pre>
<p>(Also, there's no reason to be using <code>NSMutableArray</code> or <code>NSMutableDictionary</code> if you're never going to be mutating them later.)</p>
http://stackoverflow.com/questions/1339977/how-to-provide-something-like-nil-to-this-parameter/1339990#13399902Answer by Wevah for How to provide something like nil to this parameter?Wevah2009-08-27T09:47:09Z2009-08-27T09:47:09Z<p>A null C pointer is simply <code>NULL</code>.</p>
http://stackoverflow.com/questions/1337551/lightweight-way-of-flooring-an-nsdecimal/1337606#13376061Answer by Wevah for Lightweight way of flooring an NSDecimal?Wevah2009-08-26T21:29:23Z2009-08-26T21:29:23Z<pre><code>NSDecimal result;
NSDecimalRound(&result, &decimal, 0, NSRoundDown);
</code></pre>
<p>(not tested)</p>
http://stackoverflow.com/questions/1324868/how-best-to-debug-a-crash-within-objcmsgsend/1324971#13249712Answer by Wevah for How best to debug a crash within objc_msgSend?Wevah2009-08-24T21:50:26Z2009-08-24T21:50:26Z<p>If you use NSZombieEnabled you can at least figure out what class the object is.</p>
http://stackoverflow.com/questions/1323897/nspoint-from-nstextview-insertion-point/1324863#13248631Answer by Wevah for NSpoint from NSTextView insertion pointWevah2009-08-24T21:25:07Z2009-08-24T21:25:07Z<p>You might be able to do it with an NSTextView subclass, overriding
<code>-drawInsertionPointInRect:color:turnedOn:</code> to cache the drawing rect and using the center of the rect (or some other interior point).</p>
<p>NB: I haven't tried this.</p>
http://stackoverflow.com/questions/1302985/how-do-i-compare-strings-in-objective-c/1302995#13029956Answer by Wevah for How do I compare strings in objective c?Wevah2009-08-19T22:36:53Z2009-08-19T22:36:53Z<pre><code>if ([statusString isEqualToString:@"Wrong"]) {
// do something
}
</code></pre>
http://stackoverflow.com/questions/1302644/working-with-multi-page-images-in-an-nsimage/1302829#13028291Answer by Wevah for Working with multi-page images in an NSImage Wevah2009-08-19T21:53:25Z2009-08-19T22:00:31Z<p>I'm not positive, but IIRC if you initialize an NSImage with multi-page TIFF data, you will get one image rep per page. (Probably what peterb was alluding to.)</p>
<p>Edit: Check out <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/nsbitmapimagerep%5FClass/Reference/Reference.html#//apple%5Fref/occ/clm/NSBitmapImageRep/imageRepsWithData:" rel="nofollow">+[NSBitmapImageRep imageRepsWithData:]</a>.</p>
<p>(via <a href="http://lists.apple.com/archives/cocoa-dev//2002/Mar/msg00557.html" rel="nofollow">Apple Lists</a>)</p>
http://stackoverflow.com/questions/1289532/size-discrepancy-between-size-of-folder-from-finder-and-from-carbon-file-manager/1290217#12902171Answer by Wevah for Size discrepancy between size of folder from Finder and from Carbon file managerWevah2009-08-17T20:24:40Z2009-08-17T20:24:40Z<p>The Finder will report file sizes rounded to the nearest multiple of the block size (usually 4 KB) followed by the real size in bytes, and many (most) applications are bundles of files, so the true size of the application may be far smaller than the size shown as the first ("on disk") value.</p>
<p>You can test this out by doing something (in the Terminal) like:</p>
<p><code>echo -n 'foo' > foo.txt</code></p>
<p>If you Get Info on this file in the Finder, it will report the size as "4 KB on disk (3 bytes)".</p>
http://stackoverflow.com/questions/1283688/is-there-a-cocoa-library-for-advanced-date-time-handling/1283729#12837293Answer by Wevah for Is there a cocoa library for advanced date + time handling? Wevah2009-08-16T07:57:10Z2009-08-16T07:57:10Z<p>NSCalendar + NSDateComponents?</p>
<p>However, like Peter Hosey said, it's hard to know without knowing what it is you want to do.</p>
http://stackoverflow.com/questions/1279923/synchronized-in-a-static-method/1279976#12799765Answer by Wevah for @synchronized in a static methodWevah2009-08-14T20:19:04Z2009-08-14T20:19:04Z<p><code>self</code> inside of a class (static) method refers to the class object.</p>
http://stackoverflow.com/questions/1810953/is-there-an-easy-way-to-tell-if-a-file-stream-has-opened-a-directory-instead-of-a/1810964#1810964Comment by Wevah on Is there an easy way to tell if a File stream has opened a directory instead of a file?Wevah2009-11-28T06:48:57Z2009-11-28T06:48:57ZOne of the two recommending fstat is a better choice. (I guess I'm so over-Cocoa'd that I've pushed some of the vanilla C stuff asideā¦)http://stackoverflow.com/questions/1810953/is-there-an-easy-way-to-tell-if-a-file-stream-has-opened-a-directory-instead-of-a/1810966#1810966Comment by Wevah on Is there an easy way to tell if a File stream has opened a directory instead of a file?Wevah2009-11-28T00:16:58Z2009-11-28T00:16:58ZThis one's better.http://stackoverflow.com/questions/1810953/is-there-an-easy-way-to-tell-if-a-file-stream-has-opened-a-directory-instead-of-a/1810964#1810964Comment by Wevah on Is there an easy way to tell if a File stream has opened a directory instead of a file?Wevah2009-11-27T23:18:18Z2009-11-27T23:18:18Z(Maybe this should have been a comment.)http://stackoverflow.com/questions/1794582/how-to-add-newlines-to-webapps-in-dashcode/1794620#1794620Comment by Wevah on How to add newlines to webapps in dashcode?Wevah2009-11-25T04:42:13Z2009-11-25T04:42:13ZI'll edit to clarify!http://stackoverflow.com/questions/1794582/how-to-add-newlines-to-webapps-in-dashcode/1794620#1794620Comment by Wevah on How to add newlines to webapps in dashcode?Wevah2009-11-25T04:41:33Z2009-11-25T04:41:33ZIt's a CSS declaration.http://stackoverflow.com/questions/1794582/how-to-add-newlines-to-webapps-in-dashcode/1794620#1794620Comment by Wevah on How to add newlines to webapps in dashcode?Wevah2009-11-25T04:38:21Z2009-11-25T04:38:21ZI added some other stuff to try, though I admit I haven't touched Dashcode in a while.http://stackoverflow.com/questions/1794582/how-to-add-newlines-to-webapps-in-dashcode/1794620#1794620Comment by Wevah on How to add newlines to webapps in dashcode?Wevah2009-11-25T04:35:30Z2009-11-25T04:35:30ZAh, I didn't see it in your post before you edited it; sorry about that.http://stackoverflow.com/questions/1793882/how-to-make-a-macro-that-can-take-a-string/1793932#1793932Comment by Wevah on How to make a macro that can take a string?Wevah2009-11-25T01:35:37Z2009-11-25T01:35:37Z@Chuck: Yeah, but it'll freak out if he has a <code>%</code> in the string.http://stackoverflow.com/questions/1780492/cant-access-any-outlets-after-using-loadnibnamed/1780661#1780661Comment by Wevah on Can't access any outlets after using loadNibNamedWevah2009-11-23T01:53:33Z2009-11-23T01:53:33ZI don't believe outlets are guaranteed to be hooked up in init; have you tried moving your setters to <code>-awakeFromNib</code>?http://stackoverflow.com/questions/1766522/how-can-i-check-if-a-webview-url-is-a-local-file/1766689#1766689Comment by Wevah on How can I check if a WebView URL is a local file??Wevah2009-11-19T21:57:55Z2009-11-19T21:57:55ZShould just be <code>@"file"</code>, not <code>@"file://"</code>.
(Also, <code>-isFileURL</code> is a bit more concise.)http://stackoverflow.com/questions/1765362/difference-between-synthesize-and-dynamicComment by Wevah on Difference between @synthesize and @dynamic.Wevah2009-11-19T18:15:38Z2009-11-19T18:15:38Z<a href="http://stackoverflow.com/questions/1160498/synthesize-vs-dynamic-what-are-the-differences" rel="nofollow" title="synthesize vs dynamic what are the differences">stackoverflow.com/questions/1160498/…</a>http://stackoverflow.com/questions/1753455/accessing-classes-in-a-library-file/1753463#1753463Comment by Wevah on Accessing classes in .a library file?Wevah2009-11-18T12:09:12Z2009-11-18T12:09:12Z+1 For answering the subquestion first. :)http://stackoverflow.com/questions/1753455/accessing-classes-in-a-library-file/1753463#1753463Comment by Wevah on Accessing classes in .a library file?Wevah2009-11-18T03:44:21Z2009-11-18T03:44:21ZWas it a linker error, or a compiler error? If it was the latter, can declare the class and its methods yourself (e.g., in your own separate header file).http://stackoverflow.com/questions/1031554/nstimer-doesnt-stop/1031579#1031579Comment by Wevah on NSTimer doesn't stopWevah2009-11-17T06:41:56Z2009-11-17T06:41:56ZYou don't /have/ to retain it, since the run loop will do that, but it's a good idea if you want to be safe.http://stackoverflow.com/questions/1727102/nsarrays-primitive-types-and-boxing-oh-my/1727344#1727344Comment by Wevah on NSArray's, Primitive types and Boxing Oh My!Wevah2009-11-13T23:39:17Z2009-11-13T23:39:17ZGood point. I probably shouldn't kneejerk answer when my brain is full of a bunch of other stuff. ;)