We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autocompleteTextBox?.registerAutoCompleteCellNib(UINib(nibName: "MyAutoCompleteTableViewCell", bundle: nil), forCellReuseIdentifier: "idMyAutoCompleteTableViewCell") // load the data for autocomplete func autoCompleteTextField(textField: MLPAutoCompleteTextField!, possibleCompletionsForString string: String!) -> [AnyObject]! { return people?.map{ $0.name } } func autoCompleteTextField(textField: MLPAutoCompleteTextField!, shouldConfigureCell cell: UITableViewCell!, withAutoCompleteString autocompleteString: String!, withAttributedString boldedString: NSAttributedString!, forAutoCompleteObject autocompleteObject: MLPAutoCompletionObject!, forRowAtIndexPath indexPath: NSIndexPath!) -> Bool { (cell as! MyAutoCompleteTableViewCell).delegate = bankDelegate return true }
As you can see the text from the label overlaps the buttons. How should I fix this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As you can see the text from the label overlaps the buttons. How should I fix this?
The text was updated successfully, but these errors were encountered: