Sunday, March 11, 2012

how to create fixed space and flexible space bar button items programmatically


i want to create bar button items programmatically to place these fixed space buttons between buttons....


1 comment:

  1. UIBarButtonItem *fixed = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil]

    UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil]

    ReplyDelete