I've been asked to edit some code for an app created in a previous iPhone SDK.
Whilst I'm aware the is deprecated in 3.0, I can't seem to get it working.
here is the code snippet I need to change, any suggestions?
- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
// Initialization code
}
return self;
}