iOS微博專案 4 4 會員標識

2022-09-16 23:39:21 字數 2062 閱讀 9124

github:

a.會員標識

1.需求

給vip會員打上會員標識

不同等級的vip會員使用不同的標識

使用橙色作為暱稱顏色

2.思路

返回的user資料中有兩個字段

mbrank:int 會員等級

mbtype:int 會員型別,大於2才是會員

3.實現

依照之前的做法,在微博內容介面加上乙個imageview作為vip標識

建立相應的frame

(1)在user模型加上vip相關字段

1//2

hvwweibo4//

5//created by hellovoidworld on 15/2/5.6//

7//89

#import

1011

@inte***ce

hvwuser : nsobject

1213

/** 友好顯示名稱

*/14 @property(nonatomic, copy) nsstring *name;

1516

/** 使用者頭像位址(中圖),50×50畫素

*/17 @property(nonatomic, copy) nsstring *profile_image_url;

1819

/** 使用者暱稱

*/20 @property(nonatomic, copy) nsstring *screen_name;

2122

/** 會員等級

*/23 @property(nonatomic, assign) int

mbrank;

2425

/** 會員型別

*/26 @property(nonatomic, assign) int

mbtype;

2728

/** 是否是會員

*/29 @property(nonatomic, assign, getter=isvip) bool vip;

3031

@end

1//2

hvwweibo4//

5//created by hellovoidworld on 15/2/5.6//

7//89

#import

"hvwuser.h"10

11@implementation

hvwuser

1213

/** 判斷是否是會員

*/14 -(bool)isvip

1718

@end

1920 (2

)加上vip標識的view

21//

hvwstatusoriginalview.m

22/*

* vip會員標識

*/23 @property(nonatomic, weak) uiimageview *vipview;

2425

/** **初始化方法

*/26 -(instancetype)initwithframe:(cgrect)frame

4041

return

self;42}

4344

/** 設定frame

*/45 - (void)setoriginalframe:(hvwstatusoriginalframe *)originalframe else

5960

...61 }

(3)計算frame

1

* 載入微博資料

*/3 - (void)setstatus:(hvwstatus *)status

16...

17 }

IOS微博專案之UImageView

在專案進行中時,建立的過程中 在對uiimageview物件賦值image屬性後,還需要自己手動設定cgsize屬性,感覺比較鬱悶 後來查詢資料發現 使用uiimageview imageview uiimageview alloc initwithimage uiimage imagenamed ...

IOS新浪微博分享鏈結

所以,筆者這裡把分享的文字和url拼在一起,結果就可以分享帶鏈結的內容了。把分享內容和ulr拼接在一起 nsstring sinacontent nsstring stringwithformat content,url sharedcontent sharesdk content sinacont...

專案 微會員卡工作筆記

有6張表 商家,會員,會員卡,優惠劵 進展和遇到的問題 前天 週三上午設計錶類,下午開始寫 周四寫了商家,但是卡住了 寫了剩下的user和card action,bo,dao等 現在2014 9 19 10 35 52 現在卡在了,上傳多 那一塊,還有乙個資料庫報錯,缺少select欄位 inser...