-
Notifications
You must be signed in to change notification settings - Fork 16
/
MTZoomWindow.podspec
19 lines (17 loc) · 1.01 KB
/
MTZoomWindow.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'MTZoomWindow'
s.version = '0.5.1'
s.platform = :ios
s.summary = 'A UIWindow that can be used to zoom in a specific UIView and displays it fullscreen.'
s.homepage = 'https://github.com/myell0w/MTZoomWindow'
s.author = { 'Matthias Tretter' => 'myell0w@me.com' }
s.source = { :git => 'https://github.com/myell0w/MTZoomWindow.git', :tag => '0.5' }
s.description = 'This class provides a simple way to zoom a specific UIView and display it ' \
'fullscreen, upon a defined action of the user (uses UIGestureRecognizer to ' \
'detect actions). If the user performs the action on the specified UIView the ' \
'view gets zoomed in animated and is displayed fullscreen, with a black ' \
'background. If the user performs the same gesture again, the UIView gets ' \
'zoomed back out and everything is like it was before.'
s.requires_arc = true
s.source_files = '*.{h,m}'
end