I have a tableview
with custom cells which are built from storyboard
with an identifier using AutoLayout
.
One of the subviews
needs to be round (layer.cornerRadius = width/2)
, it is a square in the beginning.
I have tried in layoutSubviews()
but it seems to be called before AutoLayout
changes its size... same thing for didMoveToSuperview()
Where is the proper function to update things like this to my subviews after AutoLayout
has changed their sizes?
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell_small") as! Cell
...
return cell
}
// In Cell
override func layoutSubviews() {
rankLabel.layer.cornerRadius = rankLabel.bounds.width/2
rankLabel.layer.masksToBounds = true
}
override func didMoveToSuperview() {
rankLabel.layer.cornerRadius = rankLabel.bounds.width/2
rankLabel.layer.masksToBounds = true
}
Result:
What I ended up doing was making a class called RoundView
class RoundView:UIView {
override func layoutSubviews() {
super.layoutSubviews()
self.layer.cornerRadius = self.bounds.width/2
self.layer.masksToBounds = true
}
}
And then I apply it to every view I need to be round. So in Storyboard I add RoundView
to Custom Class
.
What was happening was that if you look inside the source of the storyboard (XML) every view had the size of the whole screen, you can look inside your own SB code. So by trying to add a corner radius equal to the width/2
inside its parent layoutSubviews()
that subview hasn't got its frame set correctly. So the corner radius got the value of 320/2
instead of 50/2
, thats why it got misshaped.
1.Create a custom class of UIView/category
#import <UIKit/UIKit.h>
@interface RoundView : UIView
@end
#import "RoundView.h"
2.Add layoutSubviews method and set corner radius.
@implementation RoundView
-(void)layoutSubviews{
[super layoutSubviews];
self.layer.cornerRadius = self.bounds.size.width/2;
self.layer.masksToBounds = true;
}
3.Make your UIView as a subclass of RoundView and run the application, you can see circle view.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With