Create an imageview that will be in the bottom of the view for all devices like iPhone,Ipad... in iOS swift
Solution:
Its very easy to create an imageview at the bottom of the screen in iOS.
UIImageView(frame: CGRect(x: 0, y:self.view.bounds.size.height-40 ), width: self.view.bounds.size.width, height: 40))
Its very easy to create an imageview at the bottom of the screen in iOS.
UIImageView(frame: CGRect(x: 0, y:self.view.bounds.size.height-40 ), width: self.view.bounds.size.width, height: 40))
Comments
Post a Comment