Wevah

1,291
Reputation
24 views

Registered User

Name Wevah
Member for 1 year
Seen 42 mins ago
Website
Location US
Age 28

I’m a Cocoa developer. I do stuff. It’s pretty awesome.

I may give terse answers. I'm scatterbrained.

1d
comment Is there an easy way to tell if a File stream has opened a directory instead of a file?
One 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…)
1d
comment Is there an easy way to tell if a File stream has opened a directory instead of a file?
This one's better.
1d
accepted Is there an easy way to tell if a File stream has opened a directory instead of a file?
1d
comment Is there an easy way to tell if a File stream has opened a directory instead of a file?
(Maybe this should have been a comment.)
1d
answered Is there an easy way to tell if a File stream has opened a directory instead of a file?
2d
accepted Objective-C Code Obfuscation
Nov
25
accepted How to make NSTableView scroll to most recently added row?
Nov
25
answered How to make NSTableView scroll to most recently added row?
Nov
25
comment How to make a macro that can take a string?
@Chuck: Yeah, but it'll freak out if he has a % in the string.
Nov
23
comment Can’t access any outlets after using loadNibNamed
I don't believe outlets are guaranteed to be hooked up in init; have you tried moving your setters to -awakeFromNib?
Nov
23
answered Can’t access any outlets after using loadNibNamed
Nov
21
revised NSThread Error in Objective-C
edited tags
Nov
20
answered question regarding the warning that comes everywhere
Nov
19
comment How can I check if a WebView URL is a local file??
Should just be @"file", not @"file://". (Also, -isFileURL is a bit more concise.)
Nov
19
comment Difference between @synthesize and @dynamic.
stackoverflow.com/questions/1160498/…
Nov
19
accepted Changing more than one style attribute with Javascript
Nov
19
answered Changing more than one style attribute with Javascript
Nov
18
accepted Accessing classes in .a library file?
Nov
18
comment Accessing classes in .a library file?
+1 For answering the subquestion first. :)
Nov
18
comment Accessing classes in .a library file?
Was 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).
Nov
18
answered Accessing classes in .a library file?
Nov
18
answered How to conditionally use a new Cocoa API
Nov
17
comment NSTimer doesn’t stop
You 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.
Nov
14
accepted Cocoa WebView cross-thread access
Nov
14
answered Cocoa WebView cross-thread access
Nov
13
comment NSArray’s, Primitive types and Boxing Oh My!
Good point. I probably shouldn't kneejerk answer when my brain is full of a bunch of other stuff. ;)
Nov
13
revised Objective-C Code Obfuscation
I'm slow sometimes.
Nov
13
answered Objective-C Code Obfuscation
Nov
13
answered NSArray’s, Primitive types and Boxing Oh My!
Nov
12
awarded  Citizen Patrol
Nov
11
accepted There any way to differentiate a md5 of a sha-1 ?
Nov
11
answered There any way to differentiate a md5 of a sha-1 ?
Nov
8
accepted Set contents of webview to html string (cocoa)
Nov
6
comment Objective-C returning alloc’d memory in a function == bad?
Was my answer inaccurate?
Nov
6
revised Objective-C returning alloc’d memory in a function == bad?
Spelling fixup.
Nov
6
answered Objective-C returning alloc’d memory in a function == bad?
Nov
5
revised Set contents of webview to html string (cocoa)
Added line about the baseURL parameter.
Nov
5
answered Set contents of webview to html string (cocoa)
Nov
4
comment NSMutableArray addObject, unrecognized selector
If you initialize a new instance, you should be allocating a new instance as well.
Nov
2
comment Escaping backslashes in method call stringByReplacingOccurrencesOfString Does not work in Objective C
You also need to make sure you're doing NSLog(@"%@", str) and not NSLog(str).
Nov
1
revised how i can implement a custom UIAlertview with a progress bar and a cancel button?
edited tags
Nov
1
answered Obj-C: Difference between “Fairfield” and @”Fairfield” (with at string)?
Oct
31
comment Warning Pass-by-Value?
Actually, are you initializing removeArtist as nil? If not, and it's not set in the loop, it will be undefined when you call removeObject:.
Oct
31
comment Warning Pass-by-Value?
What and where are your definitions for removeArtist and eachArtist?
Oct
28
revised In Cocoa, how do you change the line endings of a file to LF?
Added a comment about translating the other way.
Oct
28
comment In Cocoa, how do you change the line endings of a file to LF?
I just realized that this will cause issues if you read in a file that already uses CRLF line-endings; hopefully you already know this ahead of time/are detecting this. >_<
Oct
28
answered In Cocoa, how do you change the line endings of a file to LF?
Oct
28
comment How to convert nsstring to nsdictionary?
The pipe-delimited stuff in the OP is just pretty-printing the desired dictionary contents.
Oct
25
accepted How can I store UIButtons in an array?
Oct
24
comment How can I store UIButtons in an array?
I think he means giving each button a tag from 0 through 3 and then just using a standard for loop (I prefer direct references, but this method should work, too).