我希望在FSCalendarVIew中选择DateCell的位置。我可以得到什么?

时间:2017-03-20 05:28:48

标签: ios objective-c fscalendar

我正在尝试在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

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

enter image description here

是否有任何方法可以获得正确的日期位置。任何类型的帮助都会很明显。

2 个答案:

答案 0 :(得分:1)

在完成FSCalendar

的所有可用方法后找到解决方案

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

- (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;
}

答案 1 :(得分:0)

看起来您可以使用委托方法 calendar:didSelectDate:atMonthPosition:然后使用calendar:cellForDate:atMonthPosition:获取单元格。然后,您可以使用cell.frame获取位置。