我正在製作收件箱模塊,我想在標籤上顯示消息數。數據來自服務器。所以如果我們有30條消息,標籤將顯示30條消息。如何做到這一點?做推送通知的概念會用在這裏還是別的什麼東西?如何在ios中的收件箱中顯示消息數
2
A
回答
0
創建通過編程方式或使用IBOutlet
的一個UILablel
並設置frame
其中u要申請,最後定像
#import <QuartzCore/QuartzCore.h>
UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(50, 50, 30, 30)]; //change the frame size as you need
label.layer.borderColor = [UIColor whiteColor].CGColor;
label.layer.borderWidth = 2.0;
label.layer.cornerRadius = label.bounds.size.height/2;
label.TextAlignment=NSTextAlignmentCenter;
label.layer.masksToBounds = YES;
label.text=[NSString stringWithFormat:@"%d",yourarrayname.count]; // here add your message array name
label.textColor=[UIColor whiteColor];
label.backgroundColor=[UIColor redColor];
[self.view addSubview:label];
斯威夫特
let label: UILabel = UILabel(frame: CGRectMake(50, 50, 30, 30))//change the frame size as you need
label.layer.borderColor = UIColor.whiteColor().CGColor
label.layer.borderWidth = 2.0
label.layer.cornerRadius = label.bounds.size.height/2
label.TextAlignment = .Center
label.layer.masksToBounds = true
label.text = "\(yourarrayname.count)" // here add your message array name
label.textColor = UIColor.whiteColor()
label.backgroundColor = UIColor.redColor()
self.view!.addSubview(label)
輸出
+0
如果你需要任何幫助,我改變了我的答案 – 2014-10-31 05:40:45
+0
會讓你知道後檢查它.. :)符合我的標準:) – 2014-10-31 12:59:51
相關問題
- 1. 顯示收件箱中的消息作爲祝酒或提醒
- 2. 正在顯示消息gmail帳戶的收件箱
- 3. Android中的收件箱消息
- 4. 如何刪除Android中SMS收件箱中的所有消息?
- 5. 如何在android中訪問消息收件箱
- 6. 消息不顯示在iOS中的UITextView?
- 7. 如何將消息添加到AVD的收件箱中
- 8. 如何訪問iPhone中的收件箱消息
- 9. 如何從Android的收件箱中刪除多條消息或單條消息?
- 10. 保存一條消息,使其顯示在短信收件箱中?
- 11. 如何在xmpp的tableview中顯示收到的消息
- 12. 如何發送消息在朋友消息文件夾/收件箱在Facebook?
- 13. Rails僅顯示收件箱中用戶的最後一條私人消息
- 14. 如何根據對話查詢顯示用戶消息收件箱?
- 15. 限制顯示在收件箱中的郵件總數
- 16. Facebook風格的消息收件箱
- 17. 如何在發送新消息時刷新收件箱(如Gmail)
- 18. 如何在Gmail收件箱中顯示姓名 - PHP
- 19. 在我的收件箱中閱讀短信消息
- 20. 如何顯示當前用戶的收件箱中的SharePoint 2007
- 21. 如何在alt消息中顯示錶
- 22. 如何在SBT中顯示消息?
- 23. 如何在javascript中顯示消息框
- 24. 如何在r中顯示消息?
- 25. 如何在Maven中顯示消息
- 26. 如何在secondActivity中顯示Toast消息?
- 27. 如何在logcat中顯示長消息
- 28. 如何在iOS中設置狀態欄以顯示消息?
- 29. 如何在查看消息旁邊創建收件箱
- 30. 發送回覆收件箱消息?
r你在應用程序內部使用這種方法 – 2014-10-31 05:13:21
意味着?應用程序內的方法? – 2014-10-31 05:16:33