[已解决]swift实现圆形头像图片和带圆角的图片
crifan 9年前 (2015-11-03) 3654浏览 0评论
原先的代码: cell.imageView?.image = UIImage(named:"hdImg_48x48.jpg") 效果是: 直角的图片: 现在需要: 弄个圆形头像:圆...
crifan 9年前 (2015-11-03) 3654浏览 0评论
原先的代码: cell.imageView?.image = UIImage(named:"hdImg_48x48.jpg") 效果是: 直角的图片: 现在需要: 弄个圆形头像:圆...
crifan 9年前 (2015-10-31) 4629浏览 0评论
代码: calculatedCellHeight = timestampHeight + bubbleMessageHeight + MessageTableViewCellPadding 出错: Consecutive statements on...
crifan 9年前 (2015-10-30) 2160浏览 0评论
swift中,已经通过init初始化子页面, 之后去通过 subView.frame.width 结果无法获得frame的尺寸,width和height都是0 swift subview frame size 0 swift uiview frame...
crifan 9年前 (2015-10-30) 3161浏览 0评论
swift中,已经通过init初始化子页面, 之后去通过 subView.frame.width 结果无法获得frame的尺寸,width和height都是0 swift subview frame size 0 swift uiview frame...
crifan 9年前 (2015-10-30) 2475浏览 0评论
swift中想要动态计算text文字的大小 搜: swift calculate UItext size 参考: ios – Calculating UILabel Text Size – Stack Overflow ios...
crifan 9年前 (2015-10-30) 6013浏览 0评论
swift中想要获得Objc中的CGFLOAT_MAX ObjC代码: CGSize textSize = CGSizeMake(CGFLOAT_MAX, 20); // rough accessory size 想要转换为Swift,...
crifan 9年前 (2015-10-29) 2158浏览 0评论
想要实现swift中的class的静态函数 参考: static 和 class – Swift 必备 tips 直接加static: class someClass { static func someFunc()...
crifan 9年前 (2015-10-28) 2723浏览 0评论
需要将Objc的枚举: typedef NS_ENUM(NSInteger, XHBubbleMessageMediaType) { XHBubbleMessageMediaTypeText = 0, XHBubbleMessage...
crifan 9年前 (2015-10-28) 9696浏览 1评论
代码: import UIKit class MessageBubbleView: UIView { overrideinit(frame: CGRect, message:Message) { self.message ...
crifan 9年前 (2015-10-27) 4152浏览 0评论
折腾: [部分解决]Swift中如何让UITableViewCell中只给显示出来的文字的区域添加背景色 期间,还是先去解决: 现在是手动设置的固定的cell的高度。 如何根据要显示的文字,单行的,多行的等待, 去动态的计算cell的高度。 ...