Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. NSOpenPanel *openPanel = [NSOpenPanel openPanel];
  2. openPanel.canChooseFiles = YES;
  3. openPanel.canChooseDirectories = NO;
  4. openPanel.allowsMultipleSelection = NO;
  5. openPanel.allowedFileTypes = @[@"sqlite3"];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement