搜索
ios - 鼠标点击scrollview 获取点击的坐标
迷茫
迷茫 2017-04-17 11:07:58
[iOS讨论组]

viewcontroller 新建一个scrollview 鼠标点击scrollview 获取鼠标点击scrollview上的坐标,坐标是相对scrollview的坐标

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

全部回复(2)
巴扎黑

MyScrollView.h

@interface MyScrollView : UIScrollView
@end

MyScrollView.m

@implementation MyScrollView

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = touches.anyObject;
    CGPoint touchLocation = [touch locationInView:self.window];
    NSLog(@"%@",NSStringFromCGPoint(touchLocation));
}

MyViewController.m

#import MyScrollView.h

- (void)viewDidLoad {
    MyScrollView *v = [[MyScrollView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 300.0f, 300.0f)];
    v.backgroundColor = [UIColor grayColor];
    [self.view addSubview:v];
}

然后看输出:

2012-10-16 17:53:11.513 Demo[3991:c07] {105, 143}
2012-10-16 17:53:12.627 Demo[3991:c07] {136, 310}
2012-10-16 17:53:14.519 Demo[3991:c07] {277, 313}
2012-10-16 17:53:16.718 Demo[3991:c07] {292, 312}
2012-10-16 17:53:17.344 Demo[3991:c07] {217, 198}
2012-10-16 17:53:17.776 Demo[3991:c07] {152, 155}
PHPz

这是什么平台?ios吗?
ios的话,被点击view重写touchesBegan:withEvent:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    if (touches.count == 1)//单指操作
    {
        UITouch *touch = touches.anyObject;
        CGPoint touchLocation = [touch locationInView:self.window];
        NSLog(@"%@",NSStringFromCGPoint(touchLocation));
    }
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号