On using this function in swift and i am getting compiler error. Function is:
class func imageWithImage (imageToResize : UIImage, scaledToSize newSize : CGSize) {
return imageToResize;
}
and the error are:
- Use of undeclared type 'UIImage'
- Use of undeclared type 'CGSize'
What's wrong with this..? what can i do to use UIImage in Swift..?