[翻译] DXPopover

简介:

DXPopover

A Popover mimic Facebook app popover using UIKit.

使用UIKit框架写了一个类似于Facebook的pop效果的动画。

The concept of this popover is very simple: add your contentView in a popover, then show the popover in the container view.

这个popver的使用非常简单:将你的view添加到popover中,然后在这个view中显示这个popover

Screenshot

Usage

The API and demo is fairly straight forward. You can read details in the demo.

这个API的使用在demo里面已经非常直白了,你可以直接在demo里面去看。

Showing the popover

  1. make a your contentView, set its frame or bounds. 创建一个你的view,设置它的frame值与bounds值
  2. new a DXPopover. 初始化一个DXPopver
  3. show it. 显示它

 

Simple - 简单的使用示例

eg:

UIImageView *imageV= [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
imageV.image = [UIImage imageNamed:@"ig20.jpg"];
DXPopover *popover = [DXPopover popover];
[popover showAtView:self.btn1 withContentView:imageV];

More conceret - 复杂一点的例子

eg:

[self.popover showAtPoint:yourPoint popoverPostion:DXPopoverPositionDown withContentView:self.tableView inView:self.tabBarController.view]; // 1.Set the show point 2.set The position if up or down staying the showPoint, 3.Your contentView 4.The containerView
__weak typeof(self)weakSelf = self;
self.popover.didDismissHandler = ^{ //The callback of popover dimissal.
    [weakSelf bounceTargetView:titleView];
};
目录
相关文章
|
存储 自然语言处理 前端开发
从零写一个Recoil(翻译)
Rewriting Recoil from scratchrecoil是facebook编写的一个库,它之所以诞生是因为人体工程学、context的性能问题和useState。这是一个非常聪明的库,几乎每个人都会找到它的用途——如果你想了解更多,请查看这段解释视频。刚开始我被图论和recoil惊到了,但渐渐的理解后,感觉也没那么特别了。也许我也可以实现一个类似的东西。我自己实现的版本和recoil
232 0
从零写一个Recoil(翻译)
|
C# iOS开发 Perl
|
Web App开发 定位技术 iOS开发