Code:
for(UIView *daView in self.view.subviews){
if(daView.tag==102021){
//do stuff
}
}
Views have a standard array property called subviews. If you iterate through that array, and look for a match on the tag, this should work fine.
NOTE - the code above is an example, and a stepping stone. It's not gonna work if you just copy and paste.