The app references non-public selector in id (Facebook SDK iOS)

前端 未结 8 1924
清歌不尽
清歌不尽 2020-11-30 03:29

I was having this warning when submitting my app with Application Loader.

The app references non-public selector in MyApp : id

This warning

8条回答
  •  渐次进展
    2020-11-30 04:23

    Facebook iOS SDK 3.12 the same problem in FBGraphUser.h.

    Change

    @property (retain, nonatomic) NSString *id;
    

    to

    @property (retain, nonatomic) NSString *UserId;
    

提交回复
热议问题