使用 UIPopoverBackgroundView 类

Using UIPopoverBackgroundView class(使用 UIPopoverBackgroundView 类)
本文介绍了使用 UIPopoverBackgroundView 类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

Apple 缺少有关如何使用 iOS5 中引入的 UIPopoverBackgroundView 类的文档.谁有例子?

Apple is missing documentation on how to use UIPopoverBackgroundView class introduced in iOS5. Anyone have an example?

我尝试将其子类化,但我在 Lion 上的 XCode 4.2 缺少 UIPopoverBackgroundView.h

I have tried to subclass it, but my XCode 4.2 on Lion is missing UIPopoverBackgroundView.h

不出所料,它应该被导入为 #import <UIKit/UIPopoverBackgroundView.h>

推荐答案

要添加到其他仅链接的答案,这是如何完成的.

To add to the other, link-only answers, here is how this is done.

  • 创建一个新的 UIPopoverBackgroundView 子类
  • 在您的界面中声明以下内容:

  • Create a new subclass of UIPopoverBackgroundView
  • Declare the following in your interface:

+(UIEdgeInsets)contentViewInsets;
+(CGFloat)arrowHeight;
+(CGFloat)arrowBase;

@property(nonatomic,readwrite) CGFloat arrowOffset;
@property(nonatomic,readwrite) UIPopoverArrowDirection arrowDirection;

  • 类方法很简单:contentViewInsets返回你的边框的宽度(不包括箭头),arrowHeight是你的高度箭头,arrowBase 是箭头的基础.

  • The class methods are straightforward: contentViewInsets returns the width of your borders all the way round (not including the arrow), arrowHeight is the height of your arrow, arrowBase is the base of your arrow.

    • 背景视图的框架应该是 self.bounds,在箭头所在的边缘由 arrowHeight 插入
    • 箭头视图的框架应对齐,使中心远离self中心arrowOffset(根据轴正确).如果箭头方向不向上,您必须更改图像方向,但我的弹出框只会向上,所以我没有这样做.
    • The frame of your background view should be self.bounds, inset by arrowHeight on whatever edge the arrow is on
    • The frame of the arrow view should be aligned so that the centre is arrowOffset away from the centre of self (correct according to the axis). You have to change the image orientation if the arrow direction is not up, but my popover would only be up so I didn't do that.

    这是我的 Up-only 子类的 layoutSubviews 方法:

    Here is the layoutSubviews method for my Up-only subclass:

    -(void)layoutSubviews
    {
        if (self.arrowDirection == UIPopoverArrowDirectionUp)
        {
            CGFloat height = [[self class] arrowHeight];
            CGFloat base = [[self class] arrowBase];
    
            self.background.frame = CGRectMake(0, height, self.frame.size.width, self.frame.size.height - height);
    
            self.arrow.frame = CGRectMake(self.frame.size.width * 0.5 + self.arrowOffset - base * 0.5, 1.0, base, height);
            [self bringSubviewToFront:self.arrow];
    
        }
    }
    

    这篇关于使用 UIPopoverBackgroundView 类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!
  • 相关文档推荐

    AWS DynamoDB Batch Get Request - iOS(AWS DynamoDB 批量获取请求 - iOS)
    Querying DynamoDB on non-key attributes(在非关键属性上查询 DynamoDB)
    DynamoDB auto incremented ID amp; server time (iOS SDK)(DynamoDB 自动递增 ID amp;服务器时间(iOS SDK))
    Where to find a clear explanation about swift alert (UIAlertController)?(哪里可以找到关于 swift alert (UIAlertController) 的清晰解释?)
    Facebook Requests Dialog: Frictionless Requests in native iOS app possible?(Facebook 请求对话框:本机 iOS 应用程序中的无摩擦请求可能吗?)
    dynamodb scanexpression with scan filter in objective-c(在objective-c中带有扫描过滤器的dynamodb scanexpression)