├── .gitignore ├── Documentation └── Images │ ├── demo.gif │ ├── screenshot.png │ └── use-with-storyboard.png ├── LICENSE ├── MyPlayground.playground ├── Contents.swift ├── Sources │ └── SupportCode.swift ├── contents.xcplayground └── timeline.xctimeline ├── README.md ├── SWFrameButton.podspec ├── SWFrameButton ├── SWFrameButton.h └── SWFrameButton.m └── SWFrameButtonExample ├── SWFrameButtonExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SWFrameButtonExample ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── iphone5.imageset │ │ ├── Contents.json │ │ └── iphone5.png │ └── magic.imageset │ │ ├── 873-magic-wand.png │ │ ├── 873-magic-wand@2x.png │ │ └── Contents.json ├── LaunchScreen.storyboard ├── SWAppDelegate.h ├── SWAppDelegate.m ├── SWFrameButtonExample-Info.plist ├── SWFrameButtonExample-Prefix.pch ├── SWSecondViewController.h ├── SWSecondViewController.m ├── SWTableViewCell.h ├── SWTableViewCell.m ├── SWTableViewController.h ├── SWTableViewController.m ├── SWViewController.h ├── SWViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── SWFrameButtonExampleTests ├── SWFrameButtonExampleTests-Info.plist ├── SWFrameButtonExampleTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/Documentation/Images/demo.gif -------------------------------------------------------------------------------- /Documentation/Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/Documentation/Images/screenshot.png -------------------------------------------------------------------------------- /Documentation/Images/use-with-storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/Documentation/Images/use-with-storyboard.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/LICENSE -------------------------------------------------------------------------------- /MyPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/MyPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /MyPlayground.playground/Sources/SupportCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/MyPlayground.playground/Sources/SupportCode.swift -------------------------------------------------------------------------------- /MyPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/MyPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /MyPlayground.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/MyPlayground.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/README.md -------------------------------------------------------------------------------- /SWFrameButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButton.podspec -------------------------------------------------------------------------------- /SWFrameButton/SWFrameButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButton/SWFrameButton.h -------------------------------------------------------------------------------- /SWFrameButton/SWFrameButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButton/SWFrameButton.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/iphone5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/iphone5.imageset/Contents.json -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/iphone5.imageset/iphone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/iphone5.imageset/iphone5.png -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/873-magic-wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/873-magic-wand.png -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/873-magic-wand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/873-magic-wand@2x.png -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/Images.xcassets/magic.imageset/Contents.json -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWAppDelegate.h -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWAppDelegate.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWFrameButtonExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWFrameButtonExample-Info.plist -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWFrameButtonExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWFrameButtonExample-Prefix.pch -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWSecondViewController.h -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWSecondViewController.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWTableViewCell.h -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWTableViewCell.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWTableViewController.h -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWTableViewController.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWViewController.h -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/SWViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/SWViewController.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExample/main.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExampleTests/SWFrameButtonExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExampleTests/SWFrameButtonExampleTests-Info.plist -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExampleTests/SWFrameButtonExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarunw/SWFrameButton/HEAD/SWFrameButtonExample/SWFrameButtonExampleTests/SWFrameButtonExampleTests.m -------------------------------------------------------------------------------- /SWFrameButtonExample/SWFrameButtonExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------