We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27087de commit 97ff0cdCopy full SHA for 97ff0cd
README.md
@@ -185,9 +185,8 @@ Some layouts may require to show from bottom to top and new subviews are inserte
185
```swift
186
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
187
188
- if let cell = tableView.dequeueReusableCellWithIdentifier(kAutoCompletionCellIdentifier) {
189
- cell.textLabel!.text = self.searchResult[indexPath.row]
190
- return cell
+ if let cell = tableView.dequeueReusableCellWithIdentifier(kCellIdentifier) {
+ cell.transform = self.tableView.transform
191
}
192
193
```
0 commit comments