網頁
▼
2016年4月21日 星期四
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 alloc] initWithFrame: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日 星期六
[筆記] Render CameraDepthTexture On Screen
在Unity上渲染出Depth與Normal圖,網路上可用的資源實在有夠舊的,連官方範例都無法使用
參考此篇
http://williamchyr.com/2013/11/unity-shaders-depth-and-normal-textures-part-3/comment-page-1/#comment-202908
修改一些段落變成Unity5可用的