I am dealing with an old application which uses struts 1.2. And for some reason, we are using pure html form to submit to struts action. For example:
for the content output of testAction.do, I try to submit to itself.
item 1
item 2
Then I associate an form bean TestForm with testAction.
I am not sure how to specify the properties in the…
I have one sample code which get SEL from current object,
SEL callback = @selector(mymethod:parameter2);
And I have method like
-(void)mymethod:(id)v1 parameter2;(NSString*)v2 {
}
Now I need to move mymethod to another object, say myDelegate.
I have tried:
SEL callback = @selector(myDelegate, mymethod:parameter2);
but appears not…
I have a big list of classes, a lot of them are not used any more.
I know the entries class, I'd like to know all its child classes. I know read class binary would help, wondering whether there is any better way.
We are not using class.forName.
thanks.