Page 1 of 1

How do I declare UITableViewLabel

Posted: Wed Nov 18, 2015 3:56 pm
by stapes
I am trying to find some elusive elements in an IOS application.

Having drilled down using the debugger, I have found an element that is defined as an UITableViewLabel.

I now want to type it, i.e

Code: Select all

UITableViewLabel myFieldName=e4;
but it does not recognize UITableViewLabel.

I am using c# code, and I guess I must need a Using statement to make this work.

What should that using statement say?

Re: How do I declare UITableViewLabel

Posted: Thu Nov 19, 2015 12:09 pm
by stapes
I think I have found my way with this problem.

I tried casting the object as various types to see if I could get a handle on it.

When I cast my UITextView fields as IOSElement, suddenly, I could Touch them and PressKeys!

Problem solved.