gpt4 book ai didi

ios - 我想在 FSCalendarVIew 中选择 DateCell 的位置。我怎么能得到?

转载 作者:行者123 更新时间:2023-11-29 00:26:26 25 4
gpt4 key购买 nike

我正在尝试获取 FSCalendarView 中选定单元格的位置。 (FSCalendar 库)。虽然我从屏幕获取位置,但它不是一个完美的位置,因为我想从该日期单元格显示弹出窗口。

我做了这样的事情,以获得触摸位置,

#pragma mark - View Lifecycle
- (void)viewDidLoad {
[super viewDidLoad];
UITapGestureRecognizer *tapGesture =
[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(oneFingerTwoTaps)];
tapGesture.delegate=self;
// Set required taps and number of touches
[tapGesture setNumberOfTapsRequired:1];
[tapGesture setNumberOfTouchesRequired:1];
[[self view] addGestureRecognizer:tapGesture];
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
CGPoint pointOnScreen = [touch locationInView:nil];
NSLog(@"Point - %f, %f", pointOnScreen.x, pointOnScreen.y);
NSLog(@"Touch");
touchFrame = CGRectMake(pointOnScreen.x, pointOnScreen.y-120, 0, 0);
return NO; // handle the touch
}

这就是我能够从这段代码中实现的目标,

enter image description here

但是当我触摸日期上方的一点点时,我得到了与该触摸相对应的位置,并且弹出窗口没有出现在正确的位置。它看起来像这样,

enter image description here

有没有办法获得正确的日期位置。任何类型的帮助都将是值得赞赏的。

最佳答案

在完成 FSCalendar 的所有可用方法后找到解决方案

对于那些会提出这样要求的人,有一个方法 - (CGRect)frameForDate:(NSDate *)date; 返回选定日期的 CGRect,从这个 rect,我们可以找到中心。

- (void)calendar:(FSCalendar *)calendar didSelectDate:(NSDate *)date {
touchFrame = [calendarView frameForDate:date];
CGPoint mypoint = CGPointMake(touchFrame.origin.x + (touchFrame.size.width / 2), touchFrame.origin.y + (touchFrame.size.height / 2));

touchFrame.origin = mypoint;
touchFrame.origin.y = touchFrame.origin.y - 120;
touchFrame.size.height = 0;
touchFrame.size.width = 0;
}

关于ios - 我想在 FSCalendarVIew 中选择 DateCell 的位置。我怎么能得到?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42896416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com