Skip to content

Instantly share code, notes, and snippets.

@dbrajkovic
dbrajkovic / UIView+TagExtensions.h
Created April 11, 2012 21:07
UIView Tag Categories
//
// UIView+TagExtensions.h
//
// Created by Daniel Brajkovic on 2/19/12.
#import <UIKit/UIKit.h>
@interface UIView (TagExtensions)
- (UIButton *)buttonWithTag:(NSInteger)aTag;
@dbrajkovic
dbrajkovic / AsyncSenTestingKitTests.h
Created August 4, 2012 21:17 — forked from akisute/AsyncSenTestingKitTests.h
SenAsyncTestCase - Asynchronous capable SenTestCase
//
// AsyncSenTestingKitTests.h
// AsyncSenTestingKitTests
//
// Created by 小野 将司 on 12/03/17.
// Copyright (c) 2012年 AppBankGames Inc. All rights reserved.
//
#import <SenTestingKit/SenTestingKit.h>
#import "SenAsyncTestCase.h"
@dbrajkovic
dbrajkovic / NSMutableArray+Shuffle.h
Created October 10, 2012 16:21
NSMutableArray (Shuffle)
@interface NSMutableArray (Shuffle)
- (void)shuffle;
@end
@dbrajkovic
dbrajkovic / VITextView.h
Created November 13, 2012 17:45
VITextView
//
// VITextView.h
//
// Created by Dan Brajkovic on 11/13/12.
// Copyright (c) 2012 VOKAL Interactive. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface VITextView : UITextView