zoukankan      html  css  js  c++  java
  • 下划线按钮

    #import <UIKit/UIKit.h>

    @interface CXUnderLineButton : UIButton

    + (CXUnderLineButton *) underlinedButton;

    @end

    #import "CXUnderLineButton.h"

    @implementation CXUnderLineButton

    - (id)initWithFrame:(CGRect)frame

    {

        self = [super initWithFrame:frame];

        if (self) {

            // Initialization code

        }

        return self;

    }

    + (CXUnderLineButton*) underlinedButton {

        CXUnderLineButton* button = [[CXUnderLineButton alloc] init];

        return button;

    }

    - (void) drawRect:(CGRect)rect {

        CGRect textRect = self.titleLabel.frame;

        

        // need to put the line at top of descenders (negative value)

        CGFloat descender = self.titleLabel.font.descender;

        

        CGContextRef contextRef = UIGraphicsGetCurrentContext();

        

        // set to same colour as text

        CGFloat offset = 1.f;

        CGContextSetStrokeColorWithColor(contextRef, self.highlighted?[UIColor grayColor].CGColor: self.titleLabel.textColor.CGColor);

        

        CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y + textRect.size.height + descender + offset);

        

        CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + textRect.size.height + descender + offset);

        

        CGContextClosePath(contextRef);

        

        CGContextDrawPath(contextRef, kCGPathStroke); 

    /*

    // Only override drawRect: if you perform custom drawing.

    // An empty implementation adversely affects performance during animation.

    - (void)drawRect:(CGRect)rect

    {

        // Drawing code

    }

    */

    @end

  • 相关阅读:
    日期格式设置
    ccnet编译后dll被删除
    GridView使用
    项目发布命令
    虚拟内存技术原理和使用方法
    一种可以穿透还原卡和还原软件的代码
    DataList控件也玩分页
    如何在 Windows XP 或 Windows Server 2003 的应用程序开发中实现 URL 验证
    vc 6.0中开发驱动设备程序配置方法
    通过CreateFile来读取磁盘扇区的方法
  • 原文地址:https://www.cnblogs.com/ldc529/p/3874887.html
Copyright © 2011-2022 走看看