我有一個實現接口的類。還有另外一個類實現了這個接口,這個第二類的實例支持我的類的實現。 對於接口指定的許多方法,我的類只是將它們直接轉發給第二類。 public class MyClass implements MyInterface
{
private OtherClass otherClassInstance; // Also implements MyInterface.
-(IBAction)ok
{
//send message to the delegate with the new settings
[self.delegate setHeight:_height Width:_width Mines:_mines];
[self.delegate dismissViewControllerAnimated:YES compl