iOS detailed TABLEVIEW:QQ buddy list implementation

Source: Internet
Author: User

Last blog wrote about performance optimization and hand-drawn custom cell content, which we use TableView's section header to achieve a similar QQ buddy list effect.

TableView has an agent method

This method returns a UIView object, where we can set a button object to the header of this section and expand the list when clicked.

Simply look at the fake buddy list data

An array contains more than one dictionary, and the dictionary includes the name of the group and the Friends list, and friends also use a dictionary to indicate the name, whether online or avatar picture name.

Loading data

-(void) LoadData  
{  
    NSString *path = [[NSBundle mainbundle] pathforresource:@ "Friends" oftype:@ "plist"];  
    _datalist = [Nsarray Arraywithcontentsoffile:path];  
    _headers = [Nsmutabledictionary dictionarywithcapacity:_datalist.count];  
          
    _groupnames = [Nsmutablearray arraywithcapacity:_datalist.count];  
    for (Nsinteger i = 0; i < _datalist.count; i++)  
    {  
        nsdictionary *dict = _datalist[i];  
        [_groupnames addobject:dict[@ "GroupName"]];  
    }  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.