Home > Articles > Mobile Application Development & Programming

This chapter is from the book

Detecting Pauses

Behavior lifetimes vary. After adding a behavior to an animator, you leave it in place for varying degrees of time: until some application state has changed, until the animation has come to a stopping point (or has reasonably coalesced to the point where the user perceives it as having stopped), or until the application ends. The lifetime you select depends on the kind of behavior you define. For example, a collision behavior that keeps views inside a parent view controller may persist indefinitely. You might remove a snap behavior as soon as the view has moved to the newly requested position or a push behavior as soon as the impulse has finished.

The problem is, however, that the built-in dynamic animator can take a long time to detect that the views it manages have stopped moving. Consider the following list of times and frames for a snapped view:

[0.03] NSRect: {{121.55639, 217.55638}, {66.88723, 66.88723}}
[0.07] NSRect: {{91.418655, 206.41866}, {81.162689, 81.162689}}
[0.10] NSRect: {{60.333874, 201.33388}, {83.332253, 83.332253}}
[0.13] NSRect: {{44.293236, 204.29323}, {79.413528, 79.413528}}
[0.17] NSRect: {{42.394054, 213.39406}, {68.211891, 68.211891}}
[0.20] NSRect: {{44.46402, 221.46402}, {60.071957, 60.071957}}
[0.23] NSRect: {{44.94722, 222.94722}, {61.105556, 61.105556}}
[0.27] NSRect: {{47.207447, 223.70744}, {60.58511, 60.58511}}
[0.30] NSRect: {{49.458027, 223.45802}, {60.083942, 60.083942}}
[0.33] NSRect: {{50.481998, 222.48199}, {60.035999, 60.035999}}
[0.37] NSRect: {{50.987999, 221.98801}, {60.023998, 60.023998}}
[0.40] NSRect: {{51, 221.5}, {60, 60}}
[0.43] NSRect: {{50.5, 221.5}, {60, 60}}
[0.47] NSRect: {{50, 221.5}, {60, 60}}
[0.50] NSRect: {{50, 222}, {60, 60}}
[0.53] NSRect: {{50, 222}, {60, 60}}
[0.57] NSRect: {{50, 222}, {60, 60}}
...[snipped 0.60 to 1.10]...
[1.13] NSRect: {{50, 222}, {60, 60}}
[1.17] NSRect: {{50, 222}, {60, 60}}
Elapsed time: 1.167326

This view reaches its final position after half a second has passed. The dynamic animator does not pause until 1.17 seconds—more than double the required time. In user experience terms, those extra 0.67 seconds can feel like forever.

The reason for the delay becomes clear when you sneak down into the animator and look up the view’s linear and angular velocity:

[0.60] NSRect: {{50, 222}, {60, 60}}
    Linear Velocity: NSPoint: {1.8314272, 1.0867469}
    Angular Velocity: 0.000001

Those values do not drop to 0 until that extra time has passed:

[1.17] NSRect: {{50, 222}, {60, 60}}
    Linear Velocity: NSPoint: {0, 0}
    Angular Velocity: 0.000000

In a practical sense, the velocities are meaningless once the view frame stops changing. When you know in advance that no outside forces will impel a view to start moving again after it’s reached a resting point, leverage this information. Trim down your waiting time by tracking a view’s frame.

Listing 6-1 defines a watcher class that monitors views until they stop changing. After a view has remained fixed for a certain period of time (here for at least 0.1 seconds), this class contacts a delegate and lets it know that the view has stopped moving. That callback enables you to update your dynamic animator and remove the behavior so the animator can more quickly come to a pause.

When run with the same snap animation as the previous example, the new watcher detects the final frame at 0.50. By 0.60, the delegate knows to stop the animation, and the entire sequence stops nearly 0.55 seconds earlier:

[0.47] NSRect: {{50, 221.5}, {60, 60}}
[0.50] NSRect: {{50, 222}, {60, 60}}
[0.53] NSRect: {{50, 222}, {60, 60}}
[0.57] NSRect: {{50, 222}, {60, 60}}
[0.60] NSRect: {{50, 222}, {60, 60}}
Elapsed time: 0.617352

Use this kind of short-cutting approach to re-enable GUI items that might otherwise be inaccessible to users once you know that the animation has come to a usable end point. While this example implements a pixel-level test, you might vary this approach to detect low angular velocities and other “close enough” tests to help end the animation effects within a reasonable amount of time.

Listing 6-1  Watching Views

// Info stores the most recent frame, count, delegate
@interface WatchedViewInfo : NSObject
@property (nonatomic) CGRect frame;
@property (nonatomic) NSUInteger count;
@property (nonatomic) CGFloat pointLaxity;
@property (nonatomic) id <ViewWatcherDelegate> delegate;
@end

@implementation WatchedViewInfo
@end

// Watcher class
@implementation ViewWatcher
{
    NSMutableDictionary *dict;
}

- (instancetype) init
{
    if (!(self = [super init])) return self;
    dict = [NSMutableDictionary dictionary];
    _pointLaxity = 10;
    return self;
}

// Determine whether two frames are “close enough”
BOOL CompareFrames(CGRect frame1, CGRect frame2, CGFloat laxity)
{
    if (CGRectEqualToRect(frame1, frame2)) return YES;
    CGRect intersection = CGRectIntersection(frame1, frame2);
    CGFloat testArea =
        intersection.size.width * intersection.size.height;
    CGFloat area1 = frame1.size.width * frame1.size.height;
    CGFloat area2 = frame2.size.width * frame2.size.height;
    return ((fabs(testArea - area1) < laxity) &&
            (fabs(testArea - area2) < laxity));

}
// See whether the view has stopped moving
- (void) checkInOnView: (NSTimer *) timer
{
    int kThreshold = 3; // must remain for 0.3 secs
    // Fetch the view and the info
    UIView *view = (UIView *) timer.userInfo;
    NSNumber *key = @((int)view);

    WatchedViewInfo *watchedViewInfo = dict[key];
    // Matching frame? If so update count
    BOOL steadyFrame = CompareFrames(watchedViewInfo.frame,
        view.frame, _pointLaxity);
    if (steadyFrame) watchedViewInfo.count++;

    // Threshold met
    if (steadyFrame && (watchedViewInfo.count >
kThreshold))
    {
        [timer invalidate];
        [dict removeObjectForKey:key];
        [watchedViewInfo.delegate viewDidPause:view];
        return;
    }

    if (steadyFrame) return;
    // Replace frame with new frame
    watchedViewInfo.frame = view.frame;
    watchedViewInfo.count = 0;
}

- (void) startWatchingView: (UIView *) view
    withDelegate: (id <ViewWatcherDelegate>) delegate
{
    NSNumber *key = @((int)view);
    WatchedViewInfo *watchedViewInfo = [[WatchedViewInfo alloc] init];
    watchedViewInfo.frame = view.frame;
    watchedViewInfo.count = 1;
    watchedViewInfo.delegate = delegate;
    dict[key] = watchedViewInfo;
    [NSTimer scheduledTimerWithTimeInterval:0.03 target:self
        selector:@selector(checkInOnView:) userInfo:view repeats:YES];
}

@end

Creating a Frame-Watching Dynamic Behavior

While the solution in Listing 6-1 provides general view oversight, you can implement the frame checker in a much more intriguing form: as the custom dynamic behavior you see in Listing 6-2. This approach that adapts Listing 6-1 to a new form requires just a couple adjustments to work as a behavior:

  • The behavior from the checkInOnView: method is now implemented in the behavior’s action property. This block is called directly by the animator, using its own timing system, so the threshold is slightly higher in this implementation than in Listing 6-1.
  • Instead of calling back to a delegate, this approach unloads both the watcher and the client behavior directly in the action block. This may be problematic if the behavior controls additional items, but for snap behaviors and their single items, it is a pretty safe approach.

To enable the watcher, you must add it to the animator as a separate behavior. Here’s how you allocate it and initialize it with a client view and an affected behavior:

UISnapBehavior *snapBehavior = [[UISnapBehavior alloc]
    initWithItem:testView snapToPoint:p];
[self.animator addBehavior:snapBehavior];
WatcherBehavior *watcher = [[WatcherBehavior alloc]
    initWithView:testView behavior:snapBehavior];
[self.animator addBehavior:watcher];

Once it is added, it works just like Listing 6-1, iteratively checking the view’s frame to wait for a steady state.

Listing 6-2 Watching Views with a Dynamic Behavior

// Create custom frame watcher
@interface WatcherBehavior : UIDynamicBehavior
- (instancetype) initWithView: (UIView *) view
    behavior: (UIDynamicBehavior *) behavior;
@property (nonatomic) CGFloat pointLaxity; // defaults to 10
@end

// Store the view, its most recent frame, and a count
@interface WatcherBehavior ()
@property (nonatomic) UIView *view;
@property (nonatomic) CGRect mostRecentFrame;
@property (nonatomic) NSInteger count;
@property (nonatomic) UIDynamicBehavior *customBehavior;
@end

@implementation WatcherBehavior
- (instancetype) initWithView: (UIView *) view
    behavior: (UIDynamicBehavior *) behavior
{
    if (!(self = [super init])) return self;

    // Initialize instance
    _view = view;
    _mostRecentFrame = _view.frame;
    _count = 0;
    _pointLaxity = 10;
    _customBehavior = behavior;

    // Create custom action for the behavior
    __weak typeof(self) weakSelf = self;
    self.action = ^{
        __strong typeof(self) strongSelf = weakSelf;
        UIView *view = strongSelf.view;

        CGRect currentFrame = view.frame;
        CGRect recentFrame = strongSelf.mostRecentFrame;
        BOOL steadyFrame = CompareFrames(currentFrame,
            recentFrame, strongSelf.pointLaxity);
        if (steadyFrame) strongSelf.count++;

        NSInteger kThreshold = 5;
        if (steadyFrame && (strongSelf.count > kThreshold))

        {
            [strongSelf.dynamicAnimator
                removeBehavior:strongSelf.customBehavior];
            [strongSelf.dynamicAnimator removeBehavior:strongSelf];
            return;
        }

        if (!steadyFrame)
        {
            strongSelf.mostRecentFrame = currentFrame;
            strongSelf.count = 0;
        }
    };
    return self;
}
@end

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020