• This repository has been archived on 25/Dec/2020
  • Stars
    star
    232
  • Rank 167,320 (Top 4 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created about 12 years ago
  • Updated almost 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Floating UI component with navigation bar for iPhone

CQMFloatingController

Overview

CQMFloatingController is a floating UI component with navigation bar. You can push/pop a content view controller on it.

This component is ported from Calqum, customizable calculator for iPhone.

Features

  • The appearance looks good in UIKit standard
  • Customizable frame color

Screenshots

Screenshot0 Screenshot1

How to Use

  1. Add all files in CQMFloatingController/Classes to your project
  2. Write code as below:
// Import a required class
#import "CQMFloatingController.h"

- (void)show {
    // Prepare content view controller
    SomeViewController *viewController = [[[SomeViewController alloc] init] autorelease];

    // Get shared floating controller, and customize if needed
    CQMFloatingController *floatingController = [CQMFloatingController sharedFloatingController];
    [floatingController setFrameColor:[UIColor orangeColor]];
        
    // Show floating controller with content
    UIWindow *window = [[UIApplication sharedApplication] keyWindow];
    UIView *rootView = [window.rootViewController view];
    [floatingController showInView:rootView
         withContentViewController:viewController
                          animated:YES];
}

License

MIT License. See LICENSE.txt for more information.

More Repositories

1

tweakpane

🎛️ Compact GUI for fine-tuning parameters and monitoring value changes
TypeScript
2,875
star
2

iceberg.vim

🇦🇶 Bluish color scheme for Vim and Neovim
Vim Script
2,070
star
3

vaffle.vim

📁 Lightweight, window-based file manager for Vim
Vim Script
282
star
4

vscode-iceberg-theme

Dark blue color theme for Visual Studio Code
TypeScript
102
star
5

llumino-pwa

📱 Llumino, a luminous calculator, re-built with the latest web technology (PWA)
JavaScript
89
star
6

colorswatch.vim

🌈 Beautiful color swatch from the current buffer
Vim Script
65
star
7

pgmnt.vim

🎨 Template engine for Vim color schemes, in pure Vim script
Vim Script
61
star
8

vanillabox

Simple, modern Lightbox-like plugin for jQuery
JavaScript
55
star
9

zero-pde

Processingでゼロから学ぶプログラミング・ビジュアルアート
Processing
40
star
10

inspecthi.vim

🔍 Small tool for inspecting highlighting link structure
Vim Script
38
star
11

svss.vim

SVSS's Vim Style Sheet
Vim Script
35
star
12

aislice

Batch export script for iOS developers who use Adobe Illustrator
JavaScript
26
star
13

dotfiles

⚙️ My configuration files (including organized, standalone .vimrc)
Vim Script
19
star
14

lightline-hybrid.vim

Bring awesome color scheme 'hybrid' into lightline.vim
Vim Script
19
star
15

hyper-iceberg

Dark blue color theme for Hyper™
JavaScript
18
star
16

xcode-iceberg

Dark blue color theme for Xcode
13
star
17

shadeline.vim

Very simple way to customize a status line of Vim
Vim Script
12
star
18

cookbook

My recipes
12
star
19

acqr

QR code generator for Animal Crossing
TypeScript
10
star
20

atom-iceberg-syntax

A dark blue color scheme for Atom, originally for Vim
CSS
7
star
21

Swift-IntroducingOptional

手を動かしながら、ていねいに学ぶOptional
Swift
5
star
22

popping-jellies

The attraction and repulsion of the three groups of jellies.
JavaScript
4
star
23

paperjs-docset

Paper.js docset generator for Dash (http://kapeli.com/dash)
Ruby
4
star
24

snapbuffer.vim

More accurate way to export current buffer as html
Vim Script
4
star
25

CCPClassDump

Objective-C
4
star
26

pixijs-docset

Pixi.js docset generator for Dash (http://kapeli.com/dash)
Ruby
4
star
27

algae-pencil-drawing

Visualization of the beauty of trigonometric functions
JavaScript
4
star
28

inkexport

Batch export script for iOS developer who uses Inkscape
Ruby
4
star
29

figma-plugin-find-text-by-font

Figma plugin for finding text by font
HTML
3
star
30

goog-starter-kit

Start developing your web app with Google Closure Library, in one command!
JavaScript
2
star
31

todo.vim

Lightweight to-do list works with unite.vim
Vim Script
2
star
32

loading-flower

A small program for creating a loading indicator image
Processing
2
star
33

ntdcoco.vim

Small utility for modifying column highlights
Vim Script
1
star
34

plug-preset.vim

Preset options of famous packages for vim-plug
Vim Script
1
star
35

sushipico-set-donations

Small scripts that create a donation list from package.json
TypeScript
1
star