Search code examples
iosiphonexcodeuibarbuttonitem

How to create fixed space and flexible space bar button items programmatically?


I want to create UIBarButtonItems programmatically and place these fixed space items between buttons.


Solution

  • UIBarButtonItem *fixedItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
    fixedItem.width = 20.0f; // or whatever you want
    
    UIBarButtonItem *flexibleItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];