首页 > 代码库 > 标签的检测(UILabel)为例

标签的检测(UILabel)为例

技术分享UILabel的触摸检测(该方法非常实用推荐一定要记住)

正文:

          关于一些标签的检测,看上去冒失没有什么用处,但是,你要仔细想一想,也许发现他非常的棒。。。。。。。。。下面我们就以UILabel为例。。。。。


首先。。我们要创建一个继承与UILabel的类。

代码如下:

#import <UIKit/UIKit.h>

@interface Mylabel : UILabel

@end

第二步。。我们要在
Mylabel的.m文件里写触发事件。。。。。。。代码如下:<pre name="code" class="objc">#import "Mylabel.h"

@implementation Mylabel

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    
    
    
    UIAlertView*al=[[UIAlertView alloc]initWithTitle:nil message:@"wo is label" delegate:self cancelButtonTitle:nil otherButtonTitles:@"ok", nil];
    [al show];
}
@end

第三步。。我们要创建一个界面让它显示。。。
代码:
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController


@end


第四步:。我们在
<pre name="code" class="objc">ViewController

的.m文件里创建一个UIlabel...但是,我们首先必须导入一个
Mylabel
的头文件

代码:
#import "ViewController.h"
#import "Mylabel.h"
@interface ViewController ()
{
    
 }
@end

第五步:我们就开始创建UIlabel实例
代码:
 //创建label
    Mylabel*kh=[[Mylabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    //打开交互功能
    kh.userInteractionEnabled=YES;
    //设置背景色,容易观察
    kh.backgroundColor=[UIColor redColor];
    [self.view addSubview:kh];
    

注意的地方,是一定要打开UIlabel的交互功能。。。。以上都非常简单,但是,从里面可以学到好多东西,一定要慢慢的想,你一定可以的。。。。。。



第六步:效果展示
技术分享



友谊开练: UIButton 的变化值得我们去开发。。。。。。。。


标签的检测(UILabel)为例