美文网首页简书首页
iOS开发- 点九图

iOS开发- 点九图

作者: 强子ly | 来源:发表于2018-07-03 15:09 被阅读944次

图片拉伸效果

CGFloat top = 0;       // 顶端盖高度
CGFloat bottom = 0;    // 底端盖高度
CGFloat left = 30;     // 左端盖宽度
CGFloat right = 30;    // 右端盖宽度

UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);
/*
 * Stretch  拉伸
 * Tile     平铺
 */
UIImage *image = [[UIImage imageNamed:@"pay_btn_bg"] resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];
[button setBackgroundImage:image forState:UIControlStateNormal];

相关文章

网友评论

    本文标题:iOS开发- 点九图

    本文链接:https://www.haomeiwen.com/subject/ufxrfftx.html