如何将文件附加到iPhone应用程序

时间:2013-08-12 07:33:16

标签: iphone attachment

在我的应用程序中,我有附加文件选项。我想发送文件,如(.txt,.rtf或pdf文件也可能是其他文件)。

当我点击附加文件时,应该弹出文件管理器。就像浏览选项一样。当点击浏览时,访问该特定mac的主页,同样我想从我的应用程序做,但目前我有不知道该怎么做。

我认为我还必须更改.plist文件中的一些修改。请提供与我的要求相关的任何教程。

使用以下代码我只能打开我的照片会话,但我想像所有文件一样从iphone打开每一件事。

  -(IBAction)btnAttachFileClicked:(id)sender
  {

     if([UIImagePickerController isSourceTypeAvailable:
    UIImagePickerControllerSourceTypePhotoLibrary])
{
    UIImagePickerController *picker= [[UIImagePickerController alloc]init];
    picker.delegate = self;
    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;


     [self presentModalViewController:picker animated:YES];

    [picker release];


  }
 }

是否可以从iphone发送文件?

tahnkyou。

0 个答案:

没有答案