I am trying to set UIEdgetInsets of TableView in Xcode7 beta with swift 2.0
here is my code
I keep getting this error while setting UIEdgeInsets
I am trying to set UIEdgetInsets of TableView in Xcode7 beta with swift 2.0
here is my code
I keep getting this error while setting UIEdgeInsets
Copyright © 2021 Jogjafile Inc.
UIEdgeInsets takes as arguments either 4 CGFloats or 4 ints, you have provided it with an unknown type CFloat and 3 ints hence swift doesn't have an initialiser for that. Adjusting CFloat to CGFloat should solve the problem