Question Section



Hello Friends

There are some questions. If you have interest , you can put your answer in comment section

Question1 - What are the required method of table with out which table can't be possible?


Question2- Can we made the table with out implementing UITableViewDelegate? If Yes,Why?


Question3- What are difference between Delegate and Datasource?


Question4- How can you make custom Table?

 

2 comments:

  1. I hava a Question Raised here...

    How to compare with one button object to Multiple button Objects(comaprison is images not text)

    ReplyDelete
  2. If i think right, you want to compare one button object to another on the basis of images which they have

    use these line of code

    UIButton *btn1;
    UIButton *btn2;


    if([btn1 imageForState:UIControlStateNormal]==[btn2 imageForState: UIControlStateNormal])
    {
    NSLog(@"btn1 and btn2 are same.")

    }
    else
    {
    NSLog(@"btn1 and btn2 are not same.")
    }

    ReplyDelete