我正在尝试确定内置的Facebook Friend Selector是否是实现我想要实现的目标的理想方式。我希望能够在用户看到好友选择器之前选择好友。假设我有一个朋友列表{Bill,Susy,Earl},当朋友选择器显示时我想要检查每个这些名字。
这似乎是不可能的,因为选择的NSArray是只读的。
@property (nonatomic, retain, readonly) NSArray *selection
Description The list of friends that are currently selected in the veiw. The items in the array are FBGraphUser objects.
有没有解决方法或我应该创建自己的朋友选择器?