自己寫的App第一次啟動的界面(作者:寧靜的夏天)
自己寫的程序啟動頁面,沒事可以看看相互學習。
仿造京東的套餐購買,cell展開(作者:dycdante)
仿造京東的套餐購買,只是配色需要修改
上拉刷新下拉加載(作者:AACC)
上拉刷新下拉加載
動態定義cell的行高,刷新加載(作者:如果雲知道)
下拉刷新,上拉加載,根據請求數據內容動態定義cell的高度
給View加自定義的網格線(作者:XiaolongYang)
在view上繪制需要的線
XIYGridBackgroundView *view1 = [[XIYGridBackgroundView alloc] initWithFrame:CGRectMake(20, 40, self.view.frame.size.width-40, 200)]; view1.lineNumber = XIYLineNumberMake(4, 3); 4條水平線(不包含上下邊),3條豎直線 view1.strokeColor = [UIColor lightGrayColor]; view1.lineInsets = UIEdgeInsetsMake(0, 0, 0, 0); view1.borderColor = [UIColor lightGrayColor]; view1.borders = UIRectEdgeTop|UIRectEdgeBottom; view1.autoresizingMask = UIViewAutoresizingFlexibleWidth; [self.view addSubview:view1];