如何在不使用任何第三方类的情况下在 iOS 中创建工具提示或类似内容?我有一个 UIButton,我想弹出一个工具提示几秒钟或直到它被清除。我见过第三方类和库,但想知道它是否受本地支持。我还想显示一个从工具提示的来源处弹出的箭头。我见过一些 UIActionSheet 弹出窗口有这个箭头。
干杯,阿米特
好吧,我最终还是使用了第三方工具提示CMTopTipView。它的开销相对较低,只是一个标头和实现。稍微修改它以考虑 ARC。这是我所做的:
#import "CMPopTipView.h"
CMPopTipView *navBarLeftButtonPopTipView;
- (void) dismissToolTip
{
[navBarLeftButtonPopTipView dismissAnimated:YES];
}
- (void) showDoubleTap
{
navBarLeftButtonPopTipView = [[CMPopTipView alloc]
initWithMessage:@"DOUBLE Tap \n to view details"] ;
navBarLeftButtonPopTipView.delegate = self;
navBarLeftButtonPopTipView.backgroundColor = [UIColor darkGrayColor];
navBarLeftButtonPopTipView.textColor = [UIColor lightTextColor];
navBarLeftButtonPopTipView.opaque = FALSE;
[navBarLeftButtonPopTipView presentPointingAtView:catButton1
inView:self.view animated:YES];
navBarLeftButtonPopTipView.alpha = 0.75f;
NSTimer *timerShowToolTip = [NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(dismissToolTip) userInfo:nil repeats:NO];
}
如果你在 iPad 上,你可以使用UIPopoverView
. 您还可以UIMenuController
在 iPhone 或 iPad 上使用类似“popover”的功能:教程。除此之外,您可以创建自己的UIView
子类来执行此操作,但是您必须自己处理箭头。
好吧,我最终做的事情相对简单。我最终使用了没有按钮的 UIActionSheet 只是一个文本。然后使用来自 UIButton 在 self.view 中的坐标平面的 showFromRect。
UIActionSheet *popup = [[UIActionSheet alloc]
initWithTitle:@"DOUBLE Tap \n to view details."
delegate:self cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil otherButtonTitles: nil];
[popup sizeToFit];
popup.tag = 9999;
CGRect myImageRect = CGRectMake(240.0f, 605.0f, 30.0f, -40.0f);
[popup showFromRect:myImageRect inView:self.view animated:YES];
我可能只是把它吸起来并使用 CMPopTipView(第三方控件)来调整它的大小和不透明度以及褪色 alpha。
我看到你们中的一些人正在使用 CMPopTip,很棒的“库”。很酷的方式!
只是一些东西,如果你在 iOS7 中使用它,你会有一些弃用。
不推荐使用的文本部分的新用途(这是一个示例)
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
paragraphStyle.alignment = self.titleAlignment;
[self.title drawInRect:titleFrame withAttributes:@{NSFontAttributeName:self.titleFont,NSParagraphStyleAttributeName:paragraphStyle}];
再见!