iphone - shopkick application UI widgets -


please see link below.

http://itunes.apple.com/app/id383298204?mt=8

there screen shots of showpick application. in there collect button impossible implement under ui tab bar. can me figure out how have implemented it? actual uitabbar?

thank you

i figured out workaround. add dummy controller middle entry of uitabbarcontroller. , in viewdidload add button uitabbar so:

tabbarbutton = [[uibutton alloc]initwithframe:cgrectmake(125, -10, 70, 33)]; [tabbarbutton setbackgroundimage:[uiimage imagenamed:@"state-inactive"]forstate:tabbarbutton]; [topbarbuttonscan setbackgroundimage:[uiimage imagenamed:@"state-active"]forstate:uicontroleventtouchdown]; [tabbarbutton addtarget:self action:@selector(tabbarbuttonclicked:) forcontrolevents:uicontroleventtouchupinside]; [[[self tabbarcontroller]tabbar ] addsubview: tabbarbutton]; 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -