我是 iOS 开发的新手。在这里,我在不同时间使用相同的代码时遇到问题,因此如何在 iPhone 中实现 oops 概念。
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];