FBPlacePickerDelegate
คลาสนี้ไม่มีให้ใช้งานใน SDK เวอร์ชั่นล่าสุดอีกต่อไป
เวอร์ชั่นที่ใหม่กว่าของคลาสนี้พร้อมแล้ว ตรวจสอบได้ เวอร์ชั่นล่าสุด

The FBPlacePickerDelegate protocol defines the methods used to receive event notifications and allow for deeper control of the FBPlacePickerViewController view.

Extends Protocol:FBViewControllerDelegate
Declared in:FBPlacePickerViewController.h
วิธีการทันใจ
placePickerViewController:handleError:

Called if there is a communication error.

พารามิเตอร์คำอธิบาย
placePicker

The place picker view controller that encountered the error.

error

An error object containing details of the error.

- (void)
placePickerViewController: (FBPlacePickerViewController *)placePicker
handleError: (NSError *)error;
ให้คำรับรองไว้ใน: FBPlacePickerViewController.h
placePickerViewController:shouldIncludePlace:

Asks the delegate whether to include a place in the list.

พารามิเตอร์คำอธิบาย
placePicker

The place picker view controller that is requesting this information.

place

An object representing the place.

- (BOOL)
placePickerViewController: (FBPlacePickerViewController *)placePicker
shouldIncludePlace: (id<FBGraphPlace>)place;
Discussion:

This can be used to implement a search bar that filters the places list.

ให้คำรับรองไว้ใน: FBPlacePickerViewController.h
placePickerViewControllerDataDidChange:

Tells the delegate that data has been loaded.

พารามิเตอร์คำอธิบาย
placePicker

The place picker view controller whose data changed.

- (void) placePickerViewControllerDataDidChange:(FBPlacePickerViewController *)placePicker;
Discussion:

The FBPlacePickerViewController object's tableView property is automatically reloaded when this happens. However, if another table view, for example the UISearchBar is showing data, then it may also need to be reloaded.

ให้คำรับรองไว้ใน: FBPlacePickerViewController.h
placePickerViewControllerSelectionDidChange:

Tells the delegate that the selection has changed.

พารามิเตอร์คำอธิบาย
placePicker

The place picker view controller whose selection changed.

- (void) placePickerViewControllerSelectionDidChange:(FBPlacePickerViewController *)placePicker;
ให้คำรับรองไว้ใน: FBPlacePickerViewController.h