i have a problem when i get a DataTable from WebService using wsdl2objc.the webservice was written using .net and the GetUserInfo method returns a DataTable.
for (id mine in response.bodyParts){
    if([mine isKindOfClass:[Mobile_GetUserInfoResponse class]]){
        Mobile_GetUserInfoResponse *res = (Mobile_GetUserInfoResponse *)mine;
        Mobile_GetUserInfoResult *getUserInfoResult  = res.GetUserInfoResult;
        //what to do next?
    }
}
i got the getUserInfoResult,but how can i get the data from it
thx.