As everyone has identified this is possible but readability is the main issue. Although the use of whitespace in suggestions is good
if ([[myScrollView.subviews objectAtIndex:k] isKindOfClass:[UILabel class]]
&& ((UILabel *)[myScrollView.subviews objectAtIndex:k]).tag >= i)
{
//code
}
I personally would still find I have to do a double take to understand what those statements are doing so sometimes it may be worth taking the readability a bit further
UILabel *label = [myScrollView.subviews objectAtIndex:k]
BOOL isLabel = [label isKindOfClass:[UILabel class]];
BOOL hasSuitableTag = label.tag >= i;
if (isLabel && hasSuitableTag) {
//code
}
OR to keep the short circuit (Thanks @CocoaFu)
UILabel *label = [myScrollView.subviews objectAtIndex:k]
BOOL isLabel = [label isKindOfClass:[UILabel class]];
if (isLabel && label.tag >= i) {
//code
}
The result reads a bit more like english (if you expand it in your had) is a label and has a suitable tag. It may slightly longer but when your reading it back in a weeks time you'll appreciate the added typing.
Programs must be written for people to read, and only incidentally for machines to execute.
Abelson & Sussman, Structure and Interpretation of Computer Programs
subview's is areadonlyproperty, which returns an array ofUIView's.UIViewresponds totagso you don't need to check first. – Paul.s Jan 10 '12 at 23:35