Class ABPeoplePickerNavigationController

    • Constructor Detail

      • ABPeoplePickerNavigationController

        protected ABPeoplePickerNavigationController​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • attemptRotationToDeviceOrientation

        public static void attemptRotationToDeviceOrientation()
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • clearTextInputContextIdentifier

        public static void clearTextInputContextIdentifier​(java.lang.String identifier)
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • prepareInterstitialAds

        public static void prepareInterstitialAds()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • addressBook

        public org.moe.natj.general.ptr.ConstVoidPtr addressBook()
        The Address Book to browse. Contacts will be returned from this ABAddressBook instance. If not set, a new ABAddressBook will be created the first time the property is accessed. Note this property is only used if the app has access to the user's contacts, otherwise it remains NULL.
      • displayedProperties

        public NSArray<? extends NSNumber> displayedProperties()
        An array of ABPropertyIDs listing the properties that should be visible when viewing a person. If you are interested in one particular type of data (for example a phone number), displayedProperties should be an array with a single NSNumber instance (representing kABPersonPhoneProperty). Note that name information will always be shown if available.
      • initWithNavigationBarClassToolbarClass

        public ABPeoplePickerNavigationController initWithNavigationBarClassToolbarClass​(org.moe.natj.objc.Class navigationBarClass,
                                                                                         org.moe.natj.objc.Class toolbarClass)
        Description copied from class: UINavigationController
        Use this initializer to make the navigation controller use your custom bar class. Passing nil for navigationBarClass will get you UINavigationBar, nil for toolbarClass gets UIToolbar. The arguments must otherwise be subclasses of the respective UIKit classes.
        Overrides:
        initWithNavigationBarClassToolbarClass in class UINavigationController
      • predicateForEnablingPerson

        public NSPredicate predicateForEnablingPerson()
        Optionally determines if a person can be selected or not. If not set, all persons will be selectable.
      • predicateForSelectionOfPerson

        public NSPredicate predicateForSelectionOfPerson()
        Optionally determines if a selected person should be returned to the app (predicate evaluates to TRUE), or if the selected person should be displayed (predicate evaluates to FALSE). If not set and -peoplePickerNavigationController:didSelectPerson: is implemented the selected person is returned to the app, or if not set and -peoplePickerNavigationController:didSelectPerson:identifier: is implemented the selected person is displayed.
      • predicateForSelectionOfProperty

        public NSPredicate predicateForSelectionOfProperty()
        Optionally determines if a selected property should be returned to the app (predicate evaluates to TRUE), or if the default action for the property should be performed (predicate evaluates to FALSE). If not set and -peoplePickerNavigationController:didSelectPerson:identifier: is implemented the selected property is returned to the app.
      • setAddressBook

        public void setAddressBook​(org.moe.natj.general.ptr.ConstVoidPtr value)
        The Address Book to browse. Contacts will be returned from this ABAddressBook instance. If not set, a new ABAddressBook will be created the first time the property is accessed. Note this property is only used if the app has access to the user's contacts, otherwise it remains NULL.
      • setDisplayedProperties

        public void setDisplayedProperties​(NSArray<? extends NSNumber> value)
        An array of ABPropertyIDs listing the properties that should be visible when viewing a person. If you are interested in one particular type of data (for example a phone number), displayedProperties should be an array with a single NSNumber instance (representing kABPersonPhoneProperty). Note that name information will always be shown if available.
      • setPeoplePickerDelegate_unsafe

        public void setPeoplePickerDelegate_unsafe​(ABPeoplePickerNavigationControllerDelegate value)
        Optional to get the selected contact, selected property or cancellation of the people picker.
      • setPeoplePickerDelegate

        public void setPeoplePickerDelegate​(ABPeoplePickerNavigationControllerDelegate value)
        Optional to get the selected contact, selected property or cancellation of the people picker.
      • setPredicateForEnablingPerson

        public void setPredicateForEnablingPerson​(NSPredicate value)
        Optionally determines if a person can be selected or not. If not set, all persons will be selectable.
      • setPredicateForSelectionOfPerson

        public void setPredicateForSelectionOfPerson​(NSPredicate value)
        Optionally determines if a selected person should be returned to the app (predicate evaluates to TRUE), or if the selected person should be displayed (predicate evaluates to FALSE). If not set and -peoplePickerNavigationController:didSelectPerson: is implemented the selected person is returned to the app, or if not set and -peoplePickerNavigationController:didSelectPerson:identifier: is implemented the selected person is displayed.
      • setPredicateForSelectionOfProperty

        public void setPredicateForSelectionOfProperty​(NSPredicate value)
        Optionally determines if a selected property should be returned to the app (predicate evaluates to TRUE), or if the default action for the property should be performed (predicate evaluates to FALSE). If not set and -peoplePickerNavigationController:didSelectPerson:identifier: is implemented the selected property is returned to the app.