MTZTiltReflectionSlider 1.0

MTZTiltReflectionSlider 1.0

TestsTested
LangLanguage Obj-CObjective C
License BSD 3.0
ReleasedLast Release Dec 2014

Maintained by Matt Zanchelli.



  • By
  • Matt Zanchelli

A UISlider subclass mimicking and improving the tilt controlled slider added to Music.app in iOS 6

The knob changes it's lighting reflection based on the motion of the device.

Examples:

Example 1 Example 2

How To Use:

You can add this UI element programmatically or with Interface Builder.

I show how to add this in Interface Builder in steps 1 and 2.

  1. Drag a UISlider from the Object Library (bottom part of Utilities panel). UISlider in Object Library

  2. Change class from default to custom class MTZTiltReflectionSlider. Custom class

  3. Add the CoreMotion Framework to your project Add CoreMotion Framework

  4. Be sure to #import "MTZTiltReflectionSlider.h" in your UIViewController subclass

  5. Set the size of the knob

    Small: 32px (MTZTiltReflectionSliderSizeSmall)

    Regular: 48px (MTZTiltReflectionSliderSizeRegular)

    [_mySlider setSize:MTZTiltReflectionSliderSizeSmall]
    

    If no size is set, it defaults to regular size (48px)

  6. Tell the slider to start motion updates when needed and stop when not needed

    In your UIViewController subclass:

    - (void)viewWillAppear:(BOOL)animated
    {
        [_mySlider startMotionDetection];
    }
    
    - (void)viewWillDisappear:(BOOL)animated
    {
        [_mySlider stopMotionDetection];
    }