How to change position of calendar in iphone?
I have implemented one calendar application for that i have used TapkulLibrary.But in that calendar is display in top of the view.I want to display in bottom of view.I don't know where开发者_JAVA技巧 i have to change x and y position.can you give me idea about that.
Thanks in advance.
You can use the frame
property of the UIView
object to change both its x,y origin as well as its size.
myView.frame = CGRectMake(x, y, width, height);
精彩评论