Hello.
Is there any way to make the example work with UIViewController (with a tableview inside) instead of TableViewController?
I've completed my application as the example (also with the correct admob pub and google info plist from firebase) But it only shows the regular cells from my Class and it never enters at this lines of code
```
func tableView(_ tableView: UITableView,
cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let nativeExpressAdView = taEvent[indexPath.row] as? GADNativeExpressAdView {
let reusableAdCell = tableView.dequeueReusableCell(withIdentifier: "NativeExpressAdViewCell",
for: indexPath)
// Remove previous GADNativeExpressAdView from the content view before adding a new one.
for subview in reusableAdCell.contentView.subviews {
subview.removeFromSuperview()
}
print("test") // ITS NEVER PRINTED AS SCROLLING
reusableAdCell.contentView.addSubview(nativeExpressAdView)
// Center GADNativeExpressAdView in the table cell's content view.
nativeExpressAdView.center = reusableAdCell.contentView.center
return reusableAdCell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "locationCell", for: indexPath) as? EventsTableViewCell
let event = taEvent[indexPath.row]
cell?.configureCell(events: event as! Events)
return cell!
}
}
```
And i think its because of the `reloaddata` that i use.
Any idea?