GameCenter请求

时间:2014-05-11 06:06:14

标签: ios objective-c ios7

我必须回答问题。

在apple文档中,有以下clas方法

+(NSUInteger)maxNumberOfRecipients

如何将此类别的Methode定义为5,例如。

我在friendrequestcontroller中尝试了以下代码。

[friendRequestController.maxNumberOfRecipients  = 5];

但我总是得到错误

property 'maxNumberOfRecipients' not found on object of type 'GKFriendRequestComposeViewController*'

我错了什么?

#import <GameKit/GameKit.h>

这个实现了,所以它应该有效!

感谢您的解决方案!

乔尔

1 个答案:

答案 0 :(得分:0)

错误是对的:)您无法设置maxNumberOfRecipients。它是一个只读类,只有&#34;确定最大数量,如果收件人&#34;根据{{​​3}}。如果您需要添加更多收件人,则需要发出多个请求。