熱門文章

2016年4月21日 星期四

[筆記] iOS apns 產生憑證

A remote notification from a provider to a client application
官方文件超難懂,最後是靠著stackoverflow解決的

如果有人能告訴我官方文件怎麼讀就能做出來,我會感激不盡

在這裡筆記一下在憑證方面遇到的困難

2016年4月19日 星期二

[筆記] iOS UITableView reloadData not working

在storyboard擺了一個TableView,結果程式碼裡面reloadData一直錯誤,搞了兩天,最後發現程式碼裡面根本不用這行


    self.tableView = [[UITableView alloc] initWithFrame:self.tableView.frame style:UITableViewStyleGrouped];

不用init阿阿阿阿阿 幹!


I put the UITableView in storyboard. The problem is that I can not update data when I call [self.tableView reloadData]. It spent me two days to solve the problem. Take this code away
    self.tableView = [[UITableView allocinitWithFrame:self.tableView.frame style:UITableViewStyleGrouped];
Fuck! I don't need to init my tableView in code or it will reference newer instance.

另外


+ (UIColor *)colorWithRed:(CGFloat)red green:(CGFloat)green blue:(CGFloat)blue alpha:(CGFloat)alpha;

每個值都要除以255阿阿阿阿阿阿,不然永遠是白色

2016年4月2日 星期六