-4

Possible Duplicate:
How to decrease the height of the Uipickerview?

In my application I want to change the height of the picker view. Please give me any information.

Community
  • 1
  • 1
Venkat1282
  • 49
  • 1
  • 5

1 Answers1

0

Use the .frame property and set the CGRect.

[picker setFrame: CGRectMake(0, 120, 320, 215) ];

CGRectMake ( x, y, width, height)
WrightsCS
  • 50,551
  • 22
  • 134
  • 186
  • Ok sir,We can do that one sir.Just now i find that one sir.Right click on .xib open as XML.And find {{-9, 244}, {338, 216}}.So change the 244 and 216. – Venkat1282 May 24 '11 at 07:26