字數194
閱讀330
喜歡1
ios 7以上風格
ios 6風格
//新標識檢視
//1、在父控制項(parentview)上顯示,顯示的位置topright
self
.badgeview = [[jsbadgeview alloc]initwithparentview:parentview alignment:jsbadgeviewalignmenttopright];
//2、如果顯示的位置不對,可以自己調整,超爽啊!
self
.badgeview
.badgepositionadjustment = cgpointmake(-15, 10);
//3、如果多個的badge,可以設定tag要辨別
self
.badgeview
.tag = in_area_new_tasks_tag;
//1、背景色
self
.badgeview
.badgebackgroundcolor = [uicolor redcolor];
//2、沒有反光面
self
.badgeview
.badgeoverlaycolor = [uicolor clearcolor];
//3、外圈的顏色,預設是白色
self
.badgeview
.badgestrokecolor = [uicolor redcolor];
/*****設定數字****/
//1、用字元
self
.badgeview
.badgetext = @"1";
//2、如果不顯示就設定為空
self
.badgeview
.badgetext = nil;
//當更新數字時,最好重新整理,不然由於frame固定的,數字為2位時,紅圈變形
[self
.badgeview setneedslayout];
購物車(註冊 登入 購物 購物車 結帳)
購物車 註冊 登入 購物 購物車 結帳 shopping car dict dict money 0 def input username pwd username input username pwd input pwd return username,pwd def goods get with...
購物車原理
1.cookie n cookie儲存在客戶端,且占用很少的資源,瀏覽器允許存放300個cookie,每個cookie的大小為4kb,足以滿足購物車的要求,同時也減輕了伺服器的負荷 n cookie為瀏覽器所內建,使用方便。即使使用者不小心關閉了瀏覽器視窗,只要在cookie定義的有效期內,購物車中...
購物車動畫
金幣終點的x位置 cgfloat positionx 290.0f 終點x 金幣終點的y位置 cgfloat positiony 500.0f 終點y cgmutablepathref path cgpathcreatemutable 金幣的起始x位置 int fromx 20 arc4random...