The IBOutlet autoCompleteDelegate is accessed from the initializer (init-> initialize-> styleAutoCompleteTableForBorderStyle:), but the outlets are not set while the designated initializer chain is called, so delegate method autoCompleteTextField:shouldStyleAutoCompleteTableView:forBorderStyle: will never get called while the class is initializing
I created a pull request EddyBorja/MLPAutoCompleteTextField#73 that should fix this issue.
The IBOutlet autoCompleteDelegate is accessed from the initializer (
init-> initialize-> styleAutoCompleteTableForBorderStyle:
), but the outlets are not set while the designated initializer chain is called, so delegate methodautoCompleteTextField:shouldStyleAutoCompleteTableView:forBorderStyle:
will never get called while the class is initializingI created a pull request EddyBorja/MLPAutoCompleteTextField#73 that should fix this issue.