[Solved] Drawing a bar gauge [closed]

for(int i=1;i<30;i++) { imgview=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@”imagename.png”]]; imgview.frame=CGRectMake(10+i*10, 10, 10, 20); imgview.tag=i; [self.view addSubview:imgview]; } do this loop with some animation 4 solved Drawing a bar gauge [closed]

[Solved] How to make a drawing program [closed]

try this demo for your application http://code4app.net/ios/Paint-Pad/4fcf74876803faec66000000 https://www.cocoacontrols.com/controls/smooth-line-view https://www.cocoacontrols.com/controls/acedrawingview https://www.cocoacontrols.com/controls/mgdrawingslate it may help you. 1 solved How to make a drawing program [closed]

[Solved] draw a layer with some color in iPhone Application

If your app is just quitting with no debug error, there still could be a message sent to some deallocated instance. Try turning on NSZombieEnabled by following the instructions here: http://www.codza.com/how-to-debug-exc_bad_access-on-iphone This will tell you when a bad message is sent. Further, if you’d like to ask a question involving specific code, you’ll get better … Read more