ios 做瀑布流效果大致思路

來源:互聯網
上載者:User

      網上下載了一個ios做瀑布流圖片展示源碼,之前藉助做web的經驗,我已為ios類似於css style中有個float:left的效果,然後形成瀑布流效果,或者像用html中做個表格分成一行幾列,然後在裡面填充內容。

      剛下載瀑布流demo大致意路是這樣:

     1. 總先做成幾列是事先要清楚,有多少條記錄,這個可以從json或者xml中讀取後知道(json或xml最好將圖片的高度和寬度也顯示出來,便於後面用到)。

     2. 假設要做成3列,就用三個uitableview,寬度平均,高度動態,頁面高度取uitableview中最高的。

     3. 三個uitableview初始化的時候用到tag(我越來越覺得tag在ios中的用處很大,就像js中讀取html控制項中的id一樣),然後showsVerticalScrollIndicator和scrollEnabled設為no,separatorStyle設為UITableViewCellSeparatorStyleNone,添加到UIview中

    4.

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{     return 當行記錄數/列;}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{    int  arrIndex=  當前indexPath.row * 列(3)+當前indexPath.column;|   return [[XML/JSON objectAtIndex:arrIndex] objectForKey:@"高度"];}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{   //從資料來源中得到當前數組對應的資料,然後再用uitableviewcell填充}

 

感謝源碼作者:http://code4app.com/codesample/4fdfecd96803fa117f000000

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.