Xcode编程问题集锦
Q1:自定义tabbar,随机色显示不出来[微博]
R1:因为.pch文件中自定义的
// RGB颜色
#define GWColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]
// 随机色
#define GWRandomColor GWColor(arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256))
两句话 中的 RGB颜色 [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0] 中 255.0 写成了255,除后 得数是0,没有数值。故没有颜色。
Q2:创建的xib,上面拖个一个tableView,作为一个属性拉到.m文件中,在.m文件敲代码添加内容到tableView上,然后运行时 tableView上什么都不显示,this is why?
R2:发现是 tableView的 数据源 和 代理 没有连到 file’s Owner.........