Tuesday, June 26, 2012

Wednesday, April 4, 2012

Handing NULL value in SQLITE




                Replace   NSString *aName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 0)];
               


with



 NSString *aName = [NSString stringWithFormat:@"%s",(char *)sqlite3_column_text(compiledStatement, 0)];
               

Monday, April 2, 2012

Unique Time Interval

NSString *k= [NSString stringWithFormat: @"%.0f", [NSDate timeIntervalSinceReferenceDate] * 1000.0];

 NSLog(@"k is  -----%@",k);

Wednesday, March 21, 2012

atmoc non atmoic

 i found on someblog nice explanation :)


The best was to understand the difference is using following example. Suppose there is an atomic string property called "name", and if you call [self setName:@"A"] from thread A, call [self setName:@"B"] from thread B, and call [self name] from thread C, then all operation on different thread will be performed serially which means if one thread is executing setter or getter, then other threads will wait. This makes property "name" read/write safe but if another thread D calls [name release] simultaneously then this operation might produce a crash because there is no setter/getter call involved here. Which means an object is read/write safe (ATOMIC) but not thread safe as another threads can simultaneously send any type of messages to the object. Developer should ensure thread safety for such objects.
If the property "name" was nonatomic, then all threads in above example - A,B, C and D will execute simultaneously producing any unpredictable result. In case of atomic, Either one of A, B or C will execute first but D can still execute in parallel.

Tuesday, January 10, 2012

KickEggLite is in APP Store

Kick Egg LITE IS A FREE IPHONE GAME ..ENJOY

FEEDJIT Live