SlideShare une entreprise Scribd logo
1  sur  41
Télécharger pour lire hors ligne
TANSTAAFL: using
open source iPhone UI
        code
    Jonathan Saggau (@jonmarimba)
           Sounds Broken inc
Da book
The dude
Three20 image viewer




Apple                      Joe++
Three20 image viewer




Apple                      Joe++
Demo
or... Julia Child impression
How to use three20 photo
           views
Static Library; pay special attention to linker flags on web
                             site.

  <TTPhotoSource> conforming object, which vends:
         <TTPhoto> conforming objects

            Note: <TTModel, TTURLObject>

                       Um. What?
/**
 * TTModel describes the state of an object that can be loaded from a
remote source.
 *
 * By implementing this protocol, you can communicate to the user the
state of network
 * activity in an object.
 */
@protocol TTModel <NSObject>

/**
 * An array of objects that conform to the TTModelDelegate protocol.
 */
- (NSMutableArray*)delegates;

/**
 * Indicates that the data has been loaded.
 *
 * Default implementation returns YES.
 */
- (BOOL)isLoaded;
/**
 * Indicates that the data is in the process of loading.
 *
 * Default implementation returns NO.
 */
- (BOOL)isLoading;

/**
 * Indicates that the data is in the process of loading additional
data.
 *
 * Default implementation returns NO.
 */
- (BOOL)isLoadingMore;

/**
 * Indicates that the model is of date and should be reloaded as
soon as possible.
 *
 * Default implementation returns NO.
 */
-(BOOL)isOutdated;
/**
 * Loads the model.
 *
 * Default implementation does nothing.
 */
- (void)load:(TTURLRequestCachePolicy)cachePolicy more:(BOOL)more;

/**
 * Cancels a load that is in progress.
 *
 * Default implementation does nothing.
 */
- (void)cancel;

/**
 * Invalidates data stored in the cache or optionally erases it.
 *
 * Default implementation does nothing.
 */
- (void)invalidate:(BOOL)erase;

@end
@protocol TTURLObject <NSObject>
@optional

/**
 * Converts the object to a URL using TTURLMap.
 */
@property (nonatomic, readonly) NSString* URLValue;

/**
 * Converts the object to a specially-named URL using TTURLMap.
 */
- (NSString*)URLValueWithName:(NSString*)name;


@end
How it works



TTPhotoViewController and TTThumbsViewController

TTURLCache caches images to memory and / or disk

  TTURLRequestQueue handles downloading images
@protocol TTPhotoSource <TTModel, TTURLObject>

/**
 * The title of this collection of photos.
 */
@property (nonatomic, copy) NSString* title;

/**
 * The total number of photos in the source, independent of the number
that have been loaded.
 */
@property (nonatomic, readonly) NSInteger numberOfPhotos;

/**
 * The maximum index of photos that have already been loaded.
 */
@property (nonatomic, readonly) NSInteger maxPhotoIndex;

/**
 *
 */
- (id<TTPhoto>)photoAtIndex:(NSInteger)index;

@end
@protocol TTPhoto <NSObject, TTURLObject>

/**
 * The photo source that the photo belongs to.
 */
@property (nonatomic, assign) id<TTPhotoSource> photoSource;

/**
 * The index of the photo within its photo source.
 */
@property (nonatomic) CGSize size;

/**
 * The index of the photo within its photo source.
 */
@property (nonatomic) NSInteger index;

/**
 * The caption of the photo.
 */
@property (nonatomic, copy) NSString* caption;

/**
 * Gets the URL of one of the differently sized versions of the
photo.
 */
- (NSString*)URLForVersion:(TTPhotoVersion)version;

@end
can use bundle://someImageFileNameHere as URL string
            to load images from app bundle

  can use documents://someImageFileNameHere as
URL string to load images from user documents folder
Other cool stuff about three20

URL-based navigation that can persist the path taken to
get to a given view controller and can push that stack of
    views back on when the user re-opens your app.

          Stylesheets to “skin” your app easily.

              Pretty buttons and overlays.

  Decent (visual) error handling for cloud-based apps

  Simpler UITableView programming using TTModel*
Documentation and help

Mailing list: http://groups.google.com/group/three20

           API docs: http://three20.info/

Me! jonathan@jonathansaggau.com @jonmarimba

 (I’m not affiliated with three20, I just use it a lot)
Calendar view with Kal




Apple                            Keith
@protocol KalDataSourceCallbacks;

@protocol KalDataSource <NSObject, UITableViewDataSource>
- (void)presentingDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate delegate:
                                       (id<KalDataSourceCallbacks>)delegate;
- (NSArray *)markedDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate;
- (void)loadItemsFromDate:(NSDate *)fromDate toDate:(NSDate *)toDate;
- (void)removeAllItems;
@end

@protocol KalDataSourceCallbacks <NSObject>
- (void)loadedDataSource:(id<KalDataSource>)dataSource;
@end
Coverflow view with OpenFlow




Apple                      Alex
Demo
or... Julia Child impression
How to use it.
@protocol AFOpenFlowViewDataSource <NSObject>

//Tells the data source that will need this image.
//The data source should set the image as soon as it’s ready
- (void)openFlowView:(AFOpenFlowView *)openFlowView requestImageForIndex:(int)index;
- (UIImage *)defaultImage;

@end

//Allows the delegate to update other parts of UI for selection
@protocol AFOpenFlowViewDelegate <NSObject>
@optional
- (void)openFlowView:(AFOpenFlowView *)openFlowView selectionDidChange:(int)index;
@end
How to use it.
BTW: The sample code also has a useful image loading
            subclass of NSOperation.

If you want to change the image for a given index, do
                        this:
	

   [(AFOpenFlowView *)someView setImage:someImage forIndex:someInteger];
How it works
                        CoreAnimation 2.5D++
	

   // Set some perspective
	

   CATransform3D sublayerTransform = CATransform3DIdentity;
	

   sublayerTransform.m34 = -0.01; // 1 / -zDistance where zDistance = 100
	

   [scrollView.layer setSublayerTransform:sublayerTransform];

          Dequeues images much like the UITableView
            (and the TTPhotoview controller, too)
          Draws only those images that are on screen
                      // the magic is here
                      - (void)layoutCover:(AFItemView *)aCover
                            selectedCover:(int)selectedIndex
                                 animated:(Boolean)animated
Beware The Uncanny Valley.




Wikipedia User:Smurrayinchester (Creative Commons
            Attribution ShareAlike 3.0)
Coverflow view with OpenFlow




Apple                      Alex
What needs a-changin’
The animation is a little “off” for the rotation (seems like
                  it’s the wrong speed)

 The z position of the flanking photos is not far enough
                          away.

            Feels like there is a lot of friction.

  The reflection under the covers is semi-transparent.
  Apple’s view has the reflected images occlude those
                 behind as in “real life.”
How I “fixed” it.
           Hacking others’ code is fun (really)


 Let a scroll view do the animating left to right and set
which page is selected (and therefore rotated to face the
            user) based on screen centerline.
       // UIScrollViewDecelerationRateNormal = 0.998
       // UIScrollViewDecelerationRateFast = 0.990
       self.decelerationRate = .992;
How I “fixed” it.
      scrolling a UIScrollView sets bounds constantly
               and calls layoutSubviews a lot...
- (void)layoutSubviews
{
    NSLog(@"[%@ %s]", self, _cmd);
    halfScreenWidth = self.bounds.size.width / 2;
    halfScreenHeight = self.bounds.size.height / 2;

    int lowerBound = MAX(-1, selectedCoverView.number - COVER_BUFFER);
    int upperBound = MIN(self.numberOfImages - 1, selectedCoverView.number + COVER_BUFFER);
                                    // 1 / -zDistance where zDistance = 100
    [self layoutCovers:selectedCoverView.number fromCover:lowerBound toCover:upperBound];
    [self setNumberOfImages:numberOfImages]; // resets view bounds and stuff
    CGPoint contentOffset = [self contentOffset];
    int targetCover = (int) roundf(contentOffset.x / COVER_SPACING);
    if (targetCover != selectedCoverView.number) {
        if (targetCover < 0)
             [self setSelectedCover:0];
        else if (targetCover >= self.numberOfImages)
             [self setSelectedCover:self.numberOfImages - 1];
        else
             [self setSelectedCover:targetCover];
    }
}
Hijacking touch events
      I think I stole this from Apple’s sample code

- (SBNotifyingWindow *)appWindow
{
    id appDel = [[UIApplication sharedApplication] delegate];
    if([appDel respondsToSelector:@selector(window)])
    {
        UIWindow *window = [appDel performSelector:@selector(window)];
        if([window isMemberOfClass:[SBNotifyingWindow class]])
        {
            return (SBNotifyingWindow *)window;
        }
    }
    return nil;
}

- (void)setUpInitialState {

    [[self appWindow] addObjectInterestedInTouches:self];
#pragma mark SBNotifyingWindowTouches

-(void)interestingEvent:(UIEvent *)event;
{
    //NSLog(@"%@ %s %@", self, _cmd, event);

    NSSet *touches = [event allTouches];
    UITouch *touch = [touches anyObject];
    UITouchPhase phase = [touch phase];

    if (phase   == UITouchPhaseBegan) {
        [self   touchesBegan:touches withEvent:event];
    }
    if (phase   == UITouchPhaseEnded)
    {
        [self   touchesEnded:touches withEvent:event];
    }
    if (phase   == UITouchPhaseCancelled) {
        [self   touchesCancelled:touches withEvent:event];
    }
    if (phase   == UITouchPhaseMoved) {
        [self   touchesMoved:touches withEvent:event];
    }
}
Coverflow view with OpenFlow




Apple                      Alex
Coverflow view with OpenFlow




                      My mods of Alex’s
Apple                  awesome code
                         (ongoing)
Demo
or... Julia Child impression
To Do


The center view doesn’t quite center after you throw the view
  around. (UIScrollview’s friction stops where it wants to)

Would like to add flipping the front cover to another view and
     add the rest of the UI in Apple’s implementation.
My mods are available on github at:
https://github.com/jonmarimba/OpenFlow
Other implementations


 FlowCover (OpenGL ES)

 Plausible Labs has one, too
(Not free, but very accurate)
Look for gogoDocs Google Docs
        reader for iPhone and iPad. It’s in an
            the app store in your pocket.




jonathan@jonathansaggau.com
http://jonathansaggau.com/blog
       twit: @jonmarimba
Will Code for food.
             Will, um, food for code.



         jonathan@jonathansaggau.com
         http://jonathansaggau.com/blog
                twit: @jonmarimba


Nerds for hire // Hiring nerds
303 TANSTAAFL: Using Open Source iPhone UI Code

Contenu connexe

Tendances

Standford 2015 week9
Standford 2015 week9Standford 2015 week9
Standford 2015 week9彼得潘 Pan
 
Owasp orlando, april 13, 2016
Owasp orlando, april 13, 2016Owasp orlando, april 13, 2016
Owasp orlando, april 13, 2016Mikhail Sosonkin
 
The 2016 Android Developer Toolbox [NANTES]
The 2016 Android Developer Toolbox [NANTES]The 2016 Android Developer Toolbox [NANTES]
The 2016 Android Developer Toolbox [NANTES]Nilhcem
 
The 2016 Android Developer Toolbox [MOBILIZATION]
The 2016 Android Developer Toolbox [MOBILIZATION]The 2016 Android Developer Toolbox [MOBILIZATION]
The 2016 Android Developer Toolbox [MOBILIZATION]Nilhcem
 
Android Wear Essentials
Android Wear EssentialsAndroid Wear Essentials
Android Wear EssentialsNilhcem
 
Maintainable JavaScript 2011
Maintainable JavaScript 2011Maintainable JavaScript 2011
Maintainable JavaScript 2011Nicholas Zakas
 
RxJS Operators - Real World Use Cases (FULL VERSION)
RxJS Operators - Real World Use Cases (FULL VERSION)RxJS Operators - Real World Use Cases (FULL VERSION)
RxJS Operators - Real World Use Cases (FULL VERSION)Tracy Lee
 
Djangocon11: Monkeying around at New Relic
Djangocon11: Monkeying around at New RelicDjangocon11: Monkeying around at New Relic
Djangocon11: Monkeying around at New RelicNew Relic
 
Hidden Gems in Swift
Hidden Gems in SwiftHidden Gems in Swift
Hidden Gems in SwiftNetguru
 
Cocoaheads Montpellier Meetup : 3D Touch for iOS
Cocoaheads Montpellier Meetup : 3D Touch for iOSCocoaheads Montpellier Meetup : 3D Touch for iOS
Cocoaheads Montpellier Meetup : 3D Touch for iOSIdean France
 
Lexical environment in ecma 262 5
Lexical environment in ecma 262 5Lexical environment in ecma 262 5
Lexical environment in ecma 262 5Kim Hunmin
 
openFrameworks 007 - GL
openFrameworks 007 - GL openFrameworks 007 - GL
openFrameworks 007 - GL roxlu
 
Blending Culture in Twitter Client
Blending Culture in Twitter ClientBlending Culture in Twitter Client
Blending Culture in Twitter ClientKenji Tanaka
 
Future vs. Monix Task
Future vs. Monix TaskFuture vs. Monix Task
Future vs. Monix TaskHermann Hueck
 
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法Kenji Tanaka
 

Tendances (20)

Standford 2015 week9
Standford 2015 week9Standford 2015 week9
Standford 2015 week9
 
Owasp orlando, april 13, 2016
Owasp orlando, april 13, 2016Owasp orlando, april 13, 2016
Owasp orlando, april 13, 2016
 
The 2016 Android Developer Toolbox [NANTES]
The 2016 Android Developer Toolbox [NANTES]The 2016 Android Developer Toolbox [NANTES]
The 2016 Android Developer Toolbox [NANTES]
 
The 2016 Android Developer Toolbox [MOBILIZATION]
The 2016 Android Developer Toolbox [MOBILIZATION]The 2016 Android Developer Toolbox [MOBILIZATION]
The 2016 Android Developer Toolbox [MOBILIZATION]
 
Android Wear Essentials
Android Wear EssentialsAndroid Wear Essentials
Android Wear Essentials
 
An introduction to Vue.js
An introduction to Vue.jsAn introduction to Vue.js
An introduction to Vue.js
 
Maintainable JavaScript 2011
Maintainable JavaScript 2011Maintainable JavaScript 2011
Maintainable JavaScript 2011
 
RxJS Operators - Real World Use Cases (FULL VERSION)
RxJS Operators - Real World Use Cases (FULL VERSION)RxJS Operators - Real World Use Cases (FULL VERSION)
RxJS Operators - Real World Use Cases (FULL VERSION)
 
2 презентация rx java+android
2 презентация rx java+android2 презентация rx java+android
2 презентация rx java+android
 
Djangocon11: Monkeying around at New Relic
Djangocon11: Monkeying around at New RelicDjangocon11: Monkeying around at New Relic
Djangocon11: Monkeying around at New Relic
 
Hidden Gems in Swift
Hidden Gems in SwiftHidden Gems in Swift
Hidden Gems in Swift
 
Cocoaheads Montpellier Meetup : 3D Touch for iOS
Cocoaheads Montpellier Meetup : 3D Touch for iOSCocoaheads Montpellier Meetup : 3D Touch for iOS
Cocoaheads Montpellier Meetup : 3D Touch for iOS
 
Lexical environment in ecma 262 5
Lexical environment in ecma 262 5Lexical environment in ecma 262 5
Lexical environment in ecma 262 5
 
openFrameworks 007 - GL
openFrameworks 007 - GL openFrameworks 007 - GL
openFrameworks 007 - GL
 
Testable Javascript
Testable JavascriptTestable Javascript
Testable Javascript
 
Blending Culture in Twitter Client
Blending Culture in Twitter ClientBlending Culture in Twitter Client
Blending Culture in Twitter Client
 
Advanced Silverlight
Advanced SilverlightAdvanced Silverlight
Advanced Silverlight
 
Future vs. Monix Task
Future vs. Monix TaskFuture vs. Monix Task
Future vs. Monix Task
 
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法
VC「もしかして...」Model「私たち...」「「入れ替わってるー!?」」を前前前世から防ぐ方法
 
Windows Phone Launchers and Choosers
Windows Phone Launchers and ChoosersWindows Phone Launchers and Choosers
Windows Phone Launchers and Choosers
 

Similaire à 303 TANSTAAFL: Using Open Source iPhone UI Code

Integrating Angular js & three.js
Integrating Angular js & three.jsIntegrating Angular js & three.js
Integrating Angular js & three.jsJosh Staples
 
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...DroidConTLV
 
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)Sarp Erdag
 
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014Fábio Pimentel
 
I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)Katsumi Kishikawa
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS ArchitectureEyal Vardi
 
AngularJS Internal
AngularJS InternalAngularJS Internal
AngularJS InternalEyal Vardi
 
Adopting 3D Touch in your apps
Adopting 3D Touch in your appsAdopting 3D Touch in your apps
Adopting 3D Touch in your appsJuan C Catalan
 
Taking Objective-C to the next level. UA Mobile 2016.
Taking Objective-C to the next level. UA Mobile 2016.Taking Objective-C to the next level. UA Mobile 2016.
Taking Objective-C to the next level. UA Mobile 2016.UA Mobile
 
Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Filippo Matteo Riggio
 
Android Best Practices
Android Best PracticesAndroid Best Practices
Android Best PracticesYekmer Simsek
 
Leaving Flatland: getting started with WebGL
Leaving Flatland: getting started with WebGLLeaving Flatland: getting started with WebGL
Leaving Flatland: getting started with WebGLgerbille
 
ReactiveCocoa in Practice
ReactiveCocoa in PracticeReactiveCocoa in Practice
ReactiveCocoa in PracticeOutware Mobile
 
Improving android experience for both users and developers
Improving android experience for both users and developersImproving android experience for both users and developers
Improving android experience for both users and developersPavel Lahoda
 
Droidcon2013 android experience lahoda
Droidcon2013 android experience lahodaDroidcon2013 android experience lahoda
Droidcon2013 android experience lahodaDroidcon Berlin
 
Implementing new WebAPIs
Implementing new WebAPIsImplementing new WebAPIs
Implementing new WebAPIsJulian Viereck
 

Similaire à 303 TANSTAAFL: Using Open Source iPhone UI Code (20)

iOS
iOSiOS
iOS
 
Integrating Angular js & three.js
Integrating Angular js & three.jsIntegrating Angular js & three.js
Integrating Angular js & three.js
 
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...
Tricks to Making a Realtime SurfaceView Actually Perform in Realtime - Maarte...
 
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)
Hızlı Cocoa Geliştirme (Develop your next cocoa app faster!)
 
Day 1
Day 1Day 1
Day 1
 
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014
Conceitos e prática no desenvolvimento iOS - Mobile Conf 2014
 
I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS Architecture
 
AngularJS Internal
AngularJS InternalAngularJS Internal
AngularJS Internal
 
Adopting 3D Touch in your apps
Adopting 3D Touch in your appsAdopting 3D Touch in your apps
Adopting 3D Touch in your apps
 
Taking Objective-C to the next level. UA Mobile 2016.
Taking Objective-C to the next level. UA Mobile 2016.Taking Objective-C to the next level. UA Mobile 2016.
Taking Objective-C to the next level. UA Mobile 2016.
 
Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2
 
Android Best Practices
Android Best PracticesAndroid Best Practices
Android Best Practices
 
Leaving Flatland: getting started with WebGL
Leaving Flatland: getting started with WebGLLeaving Flatland: getting started with WebGL
Leaving Flatland: getting started with WebGL
 
ReactiveCocoa in Practice
ReactiveCocoa in PracticeReactiveCocoa in Practice
ReactiveCocoa in Practice
 
Improving android experience for both users and developers
Improving android experience for both users and developersImproving android experience for both users and developers
Improving android experience for both users and developers
 
Droidcon2013 android experience lahoda
Droidcon2013 android experience lahodaDroidcon2013 android experience lahoda
Droidcon2013 android experience lahoda
 
Implementing New Web
Implementing New WebImplementing New Web
Implementing New Web
 
Implementing new WebAPIs
Implementing new WebAPIsImplementing new WebAPIs
Implementing new WebAPIs
 
201104 iphone navigation-based apps
201104 iphone navigation-based apps201104 iphone navigation-based apps
201104 iphone navigation-based apps
 

Dernier

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Dernier (20)

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

303 TANSTAAFL: Using Open Source iPhone UI Code

  • 1. TANSTAAFL: using open source iPhone UI code Jonathan Saggau (@jonmarimba) Sounds Broken inc
  • 7. How to use three20 photo views Static Library; pay special attention to linker flags on web site. <TTPhotoSource> conforming object, which vends: <TTPhoto> conforming objects Note: <TTModel, TTURLObject> Um. What?
  • 8. /** * TTModel describes the state of an object that can be loaded from a remote source. * * By implementing this protocol, you can communicate to the user the state of network * activity in an object. */ @protocol TTModel <NSObject> /** * An array of objects that conform to the TTModelDelegate protocol. */ - (NSMutableArray*)delegates; /** * Indicates that the data has been loaded. * * Default implementation returns YES. */ - (BOOL)isLoaded;
  • 9. /** * Indicates that the data is in the process of loading. * * Default implementation returns NO. */ - (BOOL)isLoading; /** * Indicates that the data is in the process of loading additional data. * * Default implementation returns NO. */ - (BOOL)isLoadingMore; /** * Indicates that the model is of date and should be reloaded as soon as possible. * * Default implementation returns NO. */ -(BOOL)isOutdated;
  • 10. /** * Loads the model. * * Default implementation does nothing. */ - (void)load:(TTURLRequestCachePolicy)cachePolicy more:(BOOL)more; /** * Cancels a load that is in progress. * * Default implementation does nothing. */ - (void)cancel; /** * Invalidates data stored in the cache or optionally erases it. * * Default implementation does nothing. */ - (void)invalidate:(BOOL)erase; @end
  • 11. @protocol TTURLObject <NSObject> @optional /** * Converts the object to a URL using TTURLMap. */ @property (nonatomic, readonly) NSString* URLValue; /** * Converts the object to a specially-named URL using TTURLMap. */ - (NSString*)URLValueWithName:(NSString*)name; @end
  • 12. How it works TTPhotoViewController and TTThumbsViewController TTURLCache caches images to memory and / or disk TTURLRequestQueue handles downloading images
  • 13. @protocol TTPhotoSource <TTModel, TTURLObject> /** * The title of this collection of photos. */ @property (nonatomic, copy) NSString* title; /** * The total number of photos in the source, independent of the number that have been loaded. */ @property (nonatomic, readonly) NSInteger numberOfPhotos; /** * The maximum index of photos that have already been loaded. */ @property (nonatomic, readonly) NSInteger maxPhotoIndex; /** * */ - (id<TTPhoto>)photoAtIndex:(NSInteger)index; @end
  • 14. @protocol TTPhoto <NSObject, TTURLObject> /** * The photo source that the photo belongs to. */ @property (nonatomic, assign) id<TTPhotoSource> photoSource; /** * The index of the photo within its photo source. */ @property (nonatomic) CGSize size; /** * The index of the photo within its photo source. */ @property (nonatomic) NSInteger index; /** * The caption of the photo. */ @property (nonatomic, copy) NSString* caption; /** * Gets the URL of one of the differently sized versions of the photo. */ - (NSString*)URLForVersion:(TTPhotoVersion)version; @end
  • 15. can use bundle://someImageFileNameHere as URL string to load images from app bundle can use documents://someImageFileNameHere as URL string to load images from user documents folder
  • 16. Other cool stuff about three20 URL-based navigation that can persist the path taken to get to a given view controller and can push that stack of views back on when the user re-opens your app. Stylesheets to “skin” your app easily. Pretty buttons and overlays. Decent (visual) error handling for cloud-based apps Simpler UITableView programming using TTModel*
  • 17. Documentation and help Mailing list: http://groups.google.com/group/three20 API docs: http://three20.info/ Me! jonathan@jonathansaggau.com @jonmarimba (I’m not affiliated with three20, I just use it a lot)
  • 18. Calendar view with Kal Apple Keith
  • 19.
  • 20. @protocol KalDataSourceCallbacks; @protocol KalDataSource <NSObject, UITableViewDataSource> - (void)presentingDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate delegate: (id<KalDataSourceCallbacks>)delegate; - (NSArray *)markedDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate; - (void)loadItemsFromDate:(NSDate *)fromDate toDate:(NSDate *)toDate; - (void)removeAllItems; @end @protocol KalDataSourceCallbacks <NSObject> - (void)loadedDataSource:(id<KalDataSource>)dataSource; @end
  • 21. Coverflow view with OpenFlow Apple Alex
  • 23. How to use it. @protocol AFOpenFlowViewDataSource <NSObject> //Tells the data source that will need this image. //The data source should set the image as soon as it’s ready - (void)openFlowView:(AFOpenFlowView *)openFlowView requestImageForIndex:(int)index; - (UIImage *)defaultImage; @end //Allows the delegate to update other parts of UI for selection @protocol AFOpenFlowViewDelegate <NSObject> @optional - (void)openFlowView:(AFOpenFlowView *)openFlowView selectionDidChange:(int)index; @end
  • 24. How to use it. BTW: The sample code also has a useful image loading subclass of NSOperation. If you want to change the image for a given index, do this: [(AFOpenFlowView *)someView setImage:someImage forIndex:someInteger];
  • 25. How it works CoreAnimation 2.5D++ // Set some perspective CATransform3D sublayerTransform = CATransform3DIdentity; sublayerTransform.m34 = -0.01; // 1 / -zDistance where zDistance = 100 [scrollView.layer setSublayerTransform:sublayerTransform]; Dequeues images much like the UITableView (and the TTPhotoview controller, too) Draws only those images that are on screen // the magic is here - (void)layoutCover:(AFItemView *)aCover selectedCover:(int)selectedIndex animated:(Boolean)animated
  • 26. Beware The Uncanny Valley. Wikipedia User:Smurrayinchester (Creative Commons Attribution ShareAlike 3.0)
  • 27. Coverflow view with OpenFlow Apple Alex
  • 28. What needs a-changin’ The animation is a little “off” for the rotation (seems like it’s the wrong speed) The z position of the flanking photos is not far enough away. Feels like there is a lot of friction. The reflection under the covers is semi-transparent. Apple’s view has the reflected images occlude those behind as in “real life.”
  • 29. How I “fixed” it. Hacking others’ code is fun (really) Let a scroll view do the animating left to right and set which page is selected (and therefore rotated to face the user) based on screen centerline. // UIScrollViewDecelerationRateNormal = 0.998 // UIScrollViewDecelerationRateFast = 0.990 self.decelerationRate = .992;
  • 30. How I “fixed” it. scrolling a UIScrollView sets bounds constantly and calls layoutSubviews a lot... - (void)layoutSubviews { NSLog(@"[%@ %s]", self, _cmd); halfScreenWidth = self.bounds.size.width / 2; halfScreenHeight = self.bounds.size.height / 2; int lowerBound = MAX(-1, selectedCoverView.number - COVER_BUFFER); int upperBound = MIN(self.numberOfImages - 1, selectedCoverView.number + COVER_BUFFER); // 1 / -zDistance where zDistance = 100 [self layoutCovers:selectedCoverView.number fromCover:lowerBound toCover:upperBound]; [self setNumberOfImages:numberOfImages]; // resets view bounds and stuff CGPoint contentOffset = [self contentOffset]; int targetCover = (int) roundf(contentOffset.x / COVER_SPACING); if (targetCover != selectedCoverView.number) { if (targetCover < 0) [self setSelectedCover:0]; else if (targetCover >= self.numberOfImages) [self setSelectedCover:self.numberOfImages - 1]; else [self setSelectedCover:targetCover]; } }
  • 31. Hijacking touch events I think I stole this from Apple’s sample code - (SBNotifyingWindow *)appWindow { id appDel = [[UIApplication sharedApplication] delegate]; if([appDel respondsToSelector:@selector(window)]) { UIWindow *window = [appDel performSelector:@selector(window)]; if([window isMemberOfClass:[SBNotifyingWindow class]]) { return (SBNotifyingWindow *)window; } } return nil; } - (void)setUpInitialState { [[self appWindow] addObjectInterestedInTouches:self];
  • 32. #pragma mark SBNotifyingWindowTouches -(void)interestingEvent:(UIEvent *)event; { //NSLog(@"%@ %s %@", self, _cmd, event); NSSet *touches = [event allTouches]; UITouch *touch = [touches anyObject]; UITouchPhase phase = [touch phase]; if (phase == UITouchPhaseBegan) { [self touchesBegan:touches withEvent:event]; } if (phase == UITouchPhaseEnded) { [self touchesEnded:touches withEvent:event]; } if (phase == UITouchPhaseCancelled) { [self touchesCancelled:touches withEvent:event]; } if (phase == UITouchPhaseMoved) { [self touchesMoved:touches withEvent:event]; } }
  • 33. Coverflow view with OpenFlow Apple Alex
  • 34. Coverflow view with OpenFlow My mods of Alex’s Apple awesome code (ongoing)
  • 36. To Do The center view doesn’t quite center after you throw the view around. (UIScrollview’s friction stops where it wants to) Would like to add flipping the front cover to another view and add the rest of the UI in Apple’s implementation.
  • 37. My mods are available on github at: https://github.com/jonmarimba/OpenFlow
  • 38. Other implementations FlowCover (OpenGL ES) Plausible Labs has one, too (Not free, but very accurate)
  • 39. Look for gogoDocs Google Docs reader for iPhone and iPad. It’s in an the app store in your pocket. jonathan@jonathansaggau.com http://jonathansaggau.com/blog twit: @jonmarimba
  • 40. Will Code for food. Will, um, food for code. jonathan@jonathansaggau.com http://jonathansaggau.com/blog twit: @jonmarimba Nerds for hire // Hiring nerds