私がやりたいことは次のとおりです。
- (UIView *)getView:(UIView *)recycledView withClass:(Class)myClass
{
myClass *currentItem = (myClass*)recycledView;
....
}
この関数を次のように呼び出しています。
[self getView:myView withClass:[SpecialView class]];
コンパイルエラーが発生しましたが、これを達成できるかどうかのアイデアはありますか?