Posted By

flyingmachine on 04/07/09


Tagged


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


picker valueInSeconds


Published in: Objective C 






Expand | Embed | Plain Text
  1. - (NSInteger)valueInSeconds
  2. {
  3. NSInteger dayRow = [self selectedRowInComponent:0];
  4. NSInteger hourRow = [self selectedRowInComponent:1];
  5. NSInteger minuteRow = [self selectedRowInComponent:2];
  6. NSInteger daySeconds = dayRow * 24 * 60 * 60;
  7. NSInteger hourSeconds = hourRow * 60 * 60;
  8. NSInteger minuteSeconds = minuteRow * 5 * 60;
  9.  
  10. return (daySeconds + hourSeconds + minuteSeconds);
  11. }

Report this snippet 

You need to login to post a comment.