I have created one library project, in that i am trying to Twitter sharing. But when i tried to on Twitter the application is crashes at following line
NSString *_oAuthNonce = [NSString ab_GUID];
by error:
+[NSString ab_GUID]: unrecognized selector sent to class 0x1a09fd8
ab_GUID this method is present in OAuthCore
class
+ (NSString *)ab_GUID
{
CFUUIDRef u = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef s = CFUUIDCreateString(kCFAllocatorDefault, u);
CFRelease(u);
return [(NSString *)s autorelease];
}
(My all classes are present in static Library)