项目中遇到的问题如何给UILabel画一个边框
由于我使用的是xib不是代码创建的所以使用了几种方法都没有用
- 第一个想到的
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
...
}
调试了一下,程序根本不进入这个方法,如果是代码的话就能进入了.
- 第二个想到的
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
}
不显示…
- 第三个想到的
-(void)setStore:(WZStore *)store
{
// 设置模型,这里给子控件分发数据
}
还是不行
最终的解决办法
-(void)drawRect:(CGRect)rect
{
//在这里就可以修改控件的尺寸和画上一些东西了...
}
通过最后一种方法,我实现了自己想要的功能..