Click here to Skip to main content
15,895,813 members
Articles / Mobile Apps / iOS

Versatile, programmer-friendly Split View Controller for iOS

Rate me:
Please Sign up or sign in to vote.
4.71/5 (14 votes)
20 Jan 2013CPOL10 min read 88.5K   1.8K   30  
An Objective-C class that sub-classes UIViewController to enable easily implementing split views in iPad applications.
//
//  MyImageView.h
//  steuerapp
//
//  Created by Bernhard Häussermann on 2011/04/24.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>


@interface MyImageView : UIImageView 
{
    id delegate;
    SEL selector;
}

@property (nonatomic, assign) id delegate;
@property (nonatomic, assign) SEL selector;

@end

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Digiata, Blue Owl Software
South Africa South Africa
Bernhard holds an Hons BSc in Computer Science and is a full-time C# .NET developer at Digiata.
After-hours he does iOS and Mac OS X development for Blue Owl Software. He also enjoys playing the piano.

Comments and Discussions