Guest User

Untitled

a guest
Oct 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if ([dylibPath isEqualToString:nil]) {
  2.         UIAlertView *noDylib = [[UIAlertView alloc] initWithTitle:@"No Dylib" message:@"You did not enter a Dylib Path. Can't move File" delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil];
  3.         [noDylib show];
  4.     } else {
  5.         [fm copyItemAtPath:dylibPath toPath:[NSString stringWithFormat:@"%@/Library/MobileSubstrate/DynamicLibraries/%@",basePath,dylibName] error:nil];
  6.     }
Add Comment
Please, Sign In to add comment