私はiOS開発の初心者です。ここでは、同じコードを何度も使用することに問題があるため、iPhone でおっとの概念を実装する方法について説明します。
sharebuttonpress = [[UIButton buttonWithType:UIButtonTypeCustom] retain];
sharebuttonpress.frame = CGRectMake(330, 800, 145, 85);
[sharebuttonpress setBackgroundImage:[UIImage imageNamed:@"share_new.png"]
forState:UIControlStateNormal];
[sharebuttonpress addTarget:self action:@selector(sharePressed:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:sharebuttonpress];
[self.view bringSubviewToFront:sharebuttonpress];