Search Results

0
votes

fixed positioning in MobileSafari

I found this just now: http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/ …
3
votes

Is there a cocoa library for advanced date + time handling?

NSCalendar + NSDateComponents? However, like Peter Hosey said, it's hard to know without knowing what it is you want to do. …
6
votes

How do I compare strings in objective c?

if ([statusString isEqualToString:@"Wrong"]) { // do something } …
1
vote

Lightweight way of flooring an NSDecimal?

NSDecimal result; NSDecimalRound(&result, &decimal, 0, NSRoundDown); (not tested) …
2
votes

How to provide something like nil to this parameter?

A null C pointer is simply NULL. …
3
votes

How can I store UIButtons in an array?

[NSArray arrayWithObjects:...] 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 [[NSArr …
9
votes

Obj-C: Difference between “Fairfield” and @”Fairfield” (with at string)?

"@Fairfield" is a normal C string with an '@' character in it. @"Fairfield" is an Objective-C string (NSString on OS X) with no literal '@' in it. You …
1
vote

Objective-C returning alloc’d memory in a function == bad?

Autorelease guarantees the object until the release/drain of the current NSAutoreleasePool. It's perfectly acceptable (and standard practice) to return an autoreleased object from a method. …
3
votes

Accessing classes in .a library file?

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. …
1
vote

question regarding the warning that comes everywhere

What you should probably be doing is: extern NSString * const variable; in the header and then NSString * const variable = @"cool"; in an i …