[iOS] file share in iOS8
2014-11-02
파일 공유를 위해 share 버튼을 추가한다. UIBarButtonItem *openBtn = [[UIBarButtonItem alloc] initWithTitle:@”Open..” style:UIBarButtonItemStylePlain target:self action:@selector(showFileList:)]; self.shareBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(share:)]; self.navigationItem.leftBarButtonItems = @[openBtn, self.shareBtn]; -(IBAction)share:(id)sender { NSURLRead More →