for(UIView * subView in myTextView.subviews ) // here write Name of you TextView
{
// Here You can Get all subViews of your TextView.
// But For Check subview is UILabel or not ? write following code also.
if([subView isKindOfClass:[UILabel class]]) // Check is SubView Class Is UILabel class
{
// You can write code here for your UILabel;
}
}