Skip to content

Commit

Permalink
Updated readme file
Browse files Browse the repository at this point in the history
Removed legacy method declarations
  • Loading branch information
nicklockwood committed Jul 4, 2012
1 parent ce20170 commit ac53b5b
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 23 deletions.
Expand Up @@ -278,7 +278,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "iCarouselExample-Prefix.pch";
GCC_THUMB_SUPPORT = NO;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_VERSION = "";
INFOPLIST_FILE = "iCarouselExample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = iCarouselExample;
Expand All @@ -299,7 +299,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "iCarouselExample-Prefix.pch";
GCC_THUMB_SUPPORT = NO;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_VERSION = "";
INFOPLIST_FILE = "iCarouselExample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 3.2;
PRODUCT_NAME = iCarouselExample;
Expand Down
Expand Up @@ -40,6 +40,7 @@
<int key="NSvFlags">256</int>
<string key="NSFrame">{{0, -4}, {320, 468}}</string>
<reference key="NSSuperview" ref="774585933"/>
<reference key="NSWindow"/>
<bool key="IBUIOpaque">NO</bool>
<bool key="IBUIClipsSubviews">YES</bool>
<bool key="IBUIMultipleTouchEnabled">YES</bool>
Expand All @@ -54,7 +55,7 @@
<int key="NSvFlags">292</int>
<string key="NSFrameSize">{320, 460}</string>
<reference key="NSSuperview" ref="774585933"/>
<reference key="NSNextKeyView"/>
<reference key="NSWindow"/>
<string key="NSReuseIdentifierKey">_NS:9</string>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">3</int>
Expand All @@ -65,6 +66,7 @@
</array>
<string key="NSFrame">{{0, 20}, {320, 460}}</string>
<reference key="NSSuperview"/>
<reference key="NSWindow"/>
<reference key="NSNextKeyView" ref="494189760"/>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">3</int>
Expand Down Expand Up @@ -162,13 +164,39 @@
<nil key="sourceID"/>
<int key="maxID">15</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes"/>
<object class="IBClassDescriber" key="IBDocument.Classes">
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
<object class="IBPartialClassDescription">
<string key="className">ViewController</string>
<string key="superclassName">UIViewController</string>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">carousel</string>
<string key="NS.object.0">iCarousel</string>
</object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<string key="NS.key.0">carousel</string>
<object class="IBToOneOutletInfo" key="NS.object.0">
<string key="name">carousel</string>
<string key="candidateClassName">iCarousel</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">./Classes/ViewController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">iCarousel</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">./Classes/iCarousel.h</string>
</object>
</object>
</array>
</object>
<int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
<real value="1536" key="NS.object.0"/>
</object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
Expand Down
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@ iCarousel is a class designed to simplify the implementation of various types of
Supported OS & SDK Versions
-----------------------------

* Supported build target - iOS 5.1 / Mac OS 10.7 (Xcode 4.3.2, Apple LLVM compiler 3.1)
* Supported build target - iOS 5.1 / Mac OS 10.7 (Xcode 4.3.3, Apple LLVM compiler 3.1)
* Earliest supported deployment target - iOS 4.3 / Mac OS 10.7
* Earliest compatible deployment target - iOS 3.2 / Mac OS 10.6

Expand Down Expand Up @@ -455,6 +455,9 @@ This example demonstrates how to combine AsyncImageView with the FXImageView cla
FAQ
------------

Q. I upgrade to the new version of iCarousel and it broke my project, how do I get the old one back?
A. Every previous release of iCarousel is tagged as a separate download on github - look in the tags tab.

Q. Can I use iCarousel without a nib file?
A. Yes, check out the *No Nib Demo* for how to set up iCarousel without nibs

Expand Down
14 changes: 0 additions & 14 deletions iCarousel/iCarousel.m
Expand Up @@ -76,20 +76,6 @@ @interface iCarousel ()
@property (nonatomic, assign) NSTimeInterval toggleTime;
@property (nonatomic, assign) NSInteger animationDisableCount;

- (void)step;
- (void)didMoveToSuperview;
- (void)layOutItemViews;
- (UIView *)loadViewAtIndex:(NSInteger)index;
- (NSInteger)clampedIndex:(NSInteger)index;
- (CGFloat)clampedOffset:(CGFloat)offset;
- (void)transformItemView:(UIView *)view atIndex:(NSInteger)index;
- (CGFloat)valueForOption:(iCarouselOption)option withDefault:(CGFloat)value;
- (void)startAnimation;
- (void)stopAnimation;
- (void)enableAnimation;
- (void)disableAnimation;
- (void)didScroll;

NSComparisonResult compareViewDepth(UIView *view1, UIView *view2, iCarousel *self);

#ifdef ICAROUSEL_MACOS
Expand Down

0 comments on commit ac53b5b

Please sign in to comment.