How do I declare UITableViewLabel

Ask general questions here.
stapes
Posts: 206
Joined: Wed Sep 16, 2015 10:55 am

How do I declare UITableViewLabel

Post by stapes » Wed Nov 18, 2015 3:56 pm

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?

stapes
Posts: 206
Joined: Wed Sep 16, 2015 10:55 am

Re: How do I declare UITableViewLabel

Post by stapes » Thu Nov 19, 2015 12:09 pm

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.