I am creating a barbutton item and adding it to my navigation controller toolbar
UIBarButtonItem *barButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPageCurl target:self action:@selector(pageCurlAction:)] autorelease];
And the barbutton item is rightly loading with the toolbar in my viewcontroller.Now, I push a new viewcontroller into my view and when I pop the viewcontroller, my barbutton item with the page curl shrinks and and the page curl image is missing on the barbutton.
I tried changing the
initWithBarButtonSystemItem
with
UIBarButtonSystemItemPlay, UIBarButtonSystemItemPause, UIBarButtonSystemItemFastForward
etc. But, it works fine with them. Its just the page curl icon thats not being loaded. Any reasons for this?
From the iOS Human Interface Guidelines:
(Emphasis added.)