Guest User

Untitled

a guest
Jan 15th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //This is the entire Facebook.dylib code...
  2.  
  3. extern BOOL post () {
  4. NSLog(@"Dylib function called!");
  5. UIAlertView *error = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"It worked!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
  6. [error show];
  7. [error release];
  8. return YES;
  9. }
Add Comment
Please, Sign In to add comment