Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graetzer/SGTabs
Tab component for iOS 5+. You can show your ViewControllers in tabs, it is possible to add and remove tabs on the fly
https://github.com/graetzer/SGTabs
Last synced: 3 months ago
JSON representation
Tab component for iOS 5+. You can show your ViewControllers in tabs, it is possible to add and remove tabs on the fly
- Host: GitHub
- URL: https://github.com/graetzer/SGTabs
- Owner: graetzer
- License: apache-2.0
- Created: 2012-06-07T21:46:09.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-08T00:03:23.000Z (almost 12 years ago)
- Last Synced: 2024-04-17T05:50:10.684Z (10 months ago)
- Language: Objective-C
- Size: 596 KB
- Stars: 75
- Watchers: 6
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome - SGTabs - Tab component for iOS 5+. You can show your ViewControllers in tabs, it is possible to add and remove tabs on the fly (etc)
- awesome - SGTabs - Tab component for iOS 5+. You can show your ViewControllers in tabs, it is possible to add and remove tabs on the fly (etc)
README
# SGTabs
Tab component for iOS 5 and iOS 6. You can show your ViewControllers in tabs, it is possible to add and remove tabs on the fly.
# Features
- Uses iOS 5 UIViewController Container API
- Add and remove tabs on the fly with animations
- User can remove tabs, if you allow it.
- Dynamically show and hide a UIToolbar at the top
- Show the UIBarButtonItems in viewController.toolbarItems property in the built in toolbar
- Enables you to build mobile Safari style Apps. (See demo)# Demo
A basic web browser with tabs, in around 120 lines of code.## Screenshots
![Multiple tabs](https://github.com/graetzer/SGTabs/raw/master/screen.png "A basic browser with visible toolbar")
# How to use
- Just include all files in the "./Source" Directory. Everything else is just for demonstrational purposes
- This is an ARC Project, so remember to enable ARC at least on the SGTabs files.
- Add the "-fobjc-arc" flag (In your project's target settings -> BuildPhases -> Compile Sources)
- Use as in the Demo or subclass SGTabsViewController and use it as an root view controller# Licence
I provide my code under the Apache Licence.
Some credits go to [Fictorial LLC](https://github.com/fictorial/BHTabBar "BHTabBar Github"), my tab control implementation is inspired by the one they madeCopyright 2012 Simon Grätzer
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.