Hello Dany_Dev
Can you tell me that should I display a message in empty table in numberOfRowsInSection method? I have done this in numberOfRowsInSection method:
Code:
if([array count]==0)
{
UILabel *message=[[UILabel alloc]initWithFrame:CGRectMake(20, 100, 115, 35)];
message.text=@"Empty";
[tableView addSubview:message];
[message release];
}
But there is no error and nowarning and no expected output either?
Thanks