Friday, August 29, 2014

THe Plan

Now that my iPhone app is in the app store here's the plan:

1.  Finish building Pick-a-chart.com ...
a.  Finish ETF piece
b.  Build fundamentals snapshot
c.  Build DJIA, S&P and Nasdaq 400 pages
d.  Build DJIA into first screen
e.  Build roll out button
f.  Build slide out navigator onto every screen
g.  Build marketing engine for PAC

2.  Build Door2Door Corner Store (Finish by 9/30/2014)

2B.  Car Math (Finish by 10/30/2014)

2C.  Car Math Android (Finish by 12/15/2014)

3.  Build Intuigames (Finish by 1/15/2015)

3B. Build Intuigames (Finish by 2/15/2015)

4.  Build Watchpoint. (Finish by 3/30/2015)

Wednesday, August 27, 2014

Story Scraps

-- A ebullient receptionist with a nagging kid.  She reads really fast.

-- A guy who dreams of fried chicken and old teachers

Saturday, August 16, 2014

Things to Do Tomorrow

Door2Door Drycleaning SKU Number: pLabs-0000000001.1


Tomorrow:  Go to iTunes Connect and Upload the App.

Friday, August 8, 2014

iOS Code: Implementing UIActivityIndicator

-(void) viewDidLoad
{

...

    UIActivityIndicatorView *ai = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
    ai.center = self.view.center;
    ai.hidesWhenStopped = YES;
    ai.hidden = YES;
    ai.color = [UIColor blackColor];
    // [[ai.layer setBackgroundColor:CFBridgingRetain([UIColor whiteColor])];
    self.activityIndicator = ai;

    [self.view addSubview:self.activityIndicator];


}

- (void) threadStartAnimating:(id)data {

    self.activityIndicator.hidden = NO;
    
    [self.activityIndicator startAnimating];

}

// line to start animation
    [NSThread detachNewThreadSelector:@selector(threadStartAnimating:) toTarget:self withObject:nil];


// line to stop animation
        [self.activityIndicator stopAnimating];