Possible Duplicate:
Is there a difference between YES/NO,TRUE/FALSE and true/false in objective-c?
I have one question, and it can be answered quickly. I have this code:
.h
UITableView *table;
.m
table.hidden = YES;
table.hidden = TRUE;
Is there any difference between the last two lines of code ? Or is EXACTLY the same YES and TRUE?