i want to create bar button items programmatically to place these fixed space buttons between buttons....
views:
181answers:
1
+1
A:
UIBarButtonItem *fixed = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil]
UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil]
Jerry Jones
2010-09-07 22:05:47