0

要通过您的管上传视频,我将按照此链接http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4中描述的步骤集成 GData 项目/

完成所有步骤后,我收到错误

  "_OBJC_CLASS_$_GDataEntryYouTubeUpload", referenced from:
  objc-class-ref in LibraryViewController.o


"_OBJC_CLASS_$_GDataMediaCategory", referenced from:
  objc-class-ref in LibraryViewController.o
"_OBJC_CLASS_$_GDataMediaDescription", referenced from:
  objc-class-ref in LibraryViewController.o
"_OBJC_CLASS_$_GDataMediaKeywords", referenced from:
  objc-class-ref in LibraryViewController.o
"_OBJC_CLASS_$_GDataMediaTitle", referenced from:
  objc-class-ref in LibraryViewController.o
"_OBJC_CLASS_$_GDataServiceGoogleYouTube", referenced from:
  objc-class-ref in LibraryViewController.o

我该如何解决这些问题?谢谢。

4

1 回答 1

0

由于以下原因,您将收到这些错误:

1)您的实现文件或 nib 文件未添加到您的目标中。或 2) 缺少任何框架。

对于第一个,您检查文件 LibraryViewController 的构建阶段。第二个是通过 GData 的自述文件或 GData 中的任何头文件,将给出详细信息。

于 2012-09-03T06:47:41.943 回答