EricNau
Nov 24, 01:24 AM
Looks like it's up and running now. :)
Al Coholic
Apr 29, 01:46 PM
Can't wait. Hopefully we'll officially get to see more stuff than what's been previewed so far.
Everything and I mean *everything* is constantly being shared from these developer's builds. Check youtube. It is what it is. There are no killer features in iLion. Certainly nothing like going from Tiger to Leopard.
Everything and I mean *everything* is constantly being shared from these developer's builds. Check youtube. It is what it is. There are no killer features in iLion. Certainly nothing like going from Tiger to Leopard.
Reventon
Apr 10, 09:15 PM
Pre-ordered the Duke Nukem Collector's Edition for PS3.
http://www.platformnation.com/wp-content/uploads/2011/02/Duke-Nukem-Forever-Balls-Of-Steel-Collectors-Edition.jpg
Always bet on the Duke! :cool:
http://www.platformnation.com/wp-content/uploads/2011/02/Duke-Nukem-Forever-Balls-Of-Steel-Collectors-Edition.jpg
Always bet on the Duke! :cool:
bartelby
Apr 21, 11:12 AM
All you'll do is make people paranoid. Who were those two bastards who voted down rdowns' post?
I've no idea...
:o
I've no idea...
:o
ChazUK
Apr 22, 04:23 AM
I like this change. Hopefully it'll put an end to replies that consist of nothing but "+1".
Awaits someone to quote my post with the reply "+1". :D
Awaits someone to quote my post with the reply "+1". :D
Surf Monkey
Mar 17, 01:06 AM
As for the Karma, I found a iPhone 4 at Macy's 2-days before shopping with my girlfriend, and I didn't think twice about not turning it in. I made this woman's day when she got it back. So I figured hey, maybe that was a little something I got for doing something honest a few days before
We all find creative ways to justify our actions.
We all find creative ways to justify our actions.
MrSmith
Jan 11, 07:13 PM
I think the "hilarious" part must have slipped me by. :confused:
wlh99
Apr 28, 10:08 AM
By the way, what's with 3rd person reference? the OP? you can call me Nekbeth or Chrystian, it's a lot more polite. Maybe you guys have a way to refer to someone , I don't know.
I appologize for that. I didn't recall your name. I was replying to KnightWRX, so I took a shorcut (original poster).
I won't do that any further.
I through together a simple program that I think does exactly as you want. It is a Mac version, but the different there is trival, and instead of a picker, it is a text field the user enters a time into for the timer duration. You will need to change the NSTextFields into UITextFields.
The bulk of the code is exactly what I posted before, but I modified the EchoIt method to work with an NSDate. I implemeted it in the appDelegate, and you are using your viewController. That doesn't change the code any, and your way is more correct.
I can email you the whole project as a zip if you want. It is about 2.5 meg. Just PM me your email address.
//
// timertestAppDelegate.m
// timertest
//
// Created by Warren Holybee on 4/27/11.
// Copyright 2011 Warren Holybee. All rights reserved.
//
#import "timertestAppDelegate.h"
@implementation timertestAppDelegate
@synthesize window, timeTextField, elapsedTimeTextField, timeLeftTextField;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to
//create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
[startDate release];
}
// Now that we know myTimer doesn't point to a timer already..
startDate = [[NSDate date] retain]; // remember what time this timer is created and started
// so we can calculate elapsed time later
NSTimeInterval myTimeInterval = 0.1; // How often the timer fires.
myTimer = [NSTimer scheduledTimerWithTimeInterval:myTimeInterval target:self selector:@selector(echoIt)
userInfo:nil repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
myTimer = nil;
}
-(void)echoIt {
NSDate *now = [[NSDate date] retain]; // Get the current time
NSTimeInterval elapsedTime = [now timeIntervalSinceDate:startDate]; // compare the current time to
[now release]; // our remembered time
NSLog(@"Elapsed Time = %.1f",elapsedTime); // log it and display it in a textField
[elapsedTimeTextField setStringValue:[NSString stringWithFormat:@"%.1f",elapsedTime]];
float timeValue = [timeTextField floatValue]; // timeValueTextField is where a user
// enters the countdown length
float timeLeft = timeValue - elapsedTime; // Calculate How much time is left.
NSLog(@"Time Left = %.1f",timeLeft); // log it and display it
[timeLeftTextField setStringValue:[NSString stringWithFormat:@"%.1f",timeLeft]];
if (timeLeft < 0) { // if the time is up, send "cancelIt:"
[self cancelIt:self]; // message to ourself.
}
}
@end
*edit:
If you like, later tonight I can show you how to do this as you first tried, by incrementing a seconds variable. Or wait for KnightWRX. My concern is accuracy of the timer. It might be off by several seconds after running an hour. That might not be an issue for your application, but you should be aware of it.
I appologize for that. I didn't recall your name. I was replying to KnightWRX, so I took a shorcut (original poster).
I won't do that any further.
I through together a simple program that I think does exactly as you want. It is a Mac version, but the different there is trival, and instead of a picker, it is a text field the user enters a time into for the timer duration. You will need to change the NSTextFields into UITextFields.
The bulk of the code is exactly what I posted before, but I modified the EchoIt method to work with an NSDate. I implemeted it in the appDelegate, and you are using your viewController. That doesn't change the code any, and your way is more correct.
I can email you the whole project as a zip if you want. It is about 2.5 meg. Just PM me your email address.
//
// timertestAppDelegate.m
// timertest
//
// Created by Warren Holybee on 4/27/11.
// Copyright 2011 Warren Holybee. All rights reserved.
//
#import "timertestAppDelegate.h"
@implementation timertestAppDelegate
@synthesize window, timeTextField, elapsedTimeTextField, timeLeftTextField;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to
//create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
[startDate release];
}
// Now that we know myTimer doesn't point to a timer already..
startDate = [[NSDate date] retain]; // remember what time this timer is created and started
// so we can calculate elapsed time later
NSTimeInterval myTimeInterval = 0.1; // How often the timer fires.
myTimer = [NSTimer scheduledTimerWithTimeInterval:myTimeInterval target:self selector:@selector(echoIt)
userInfo:nil repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
myTimer = nil;
}
-(void)echoIt {
NSDate *now = [[NSDate date] retain]; // Get the current time
NSTimeInterval elapsedTime = [now timeIntervalSinceDate:startDate]; // compare the current time to
[now release]; // our remembered time
NSLog(@"Elapsed Time = %.1f",elapsedTime); // log it and display it in a textField
[elapsedTimeTextField setStringValue:[NSString stringWithFormat:@"%.1f",elapsedTime]];
float timeValue = [timeTextField floatValue]; // timeValueTextField is where a user
// enters the countdown length
float timeLeft = timeValue - elapsedTime; // Calculate How much time is left.
NSLog(@"Time Left = %.1f",timeLeft); // log it and display it
[timeLeftTextField setStringValue:[NSString stringWithFormat:@"%.1f",timeLeft]];
if (timeLeft < 0) { // if the time is up, send "cancelIt:"
[self cancelIt:self]; // message to ourself.
}
}
@end
*edit:
If you like, later tonight I can show you how to do this as you first tried, by incrementing a seconds variable. Or wait for KnightWRX. My concern is accuracy of the timer. It might be off by several seconds after running an hour. That might not be an issue for your application, but you should be aware of it.
Amazing Iceman
May 4, 08:38 AM
I really like the tone of these commercials.
Also, I enjoy that they keep saying magic or magical; only because I know how angry people (trolls, mostly) here get about it.
LOL... Well, Trolls, little green people, etc., are not that bad... it's just the way they are. All part of the "Magical World".
Also, I enjoy that they keep saying magic or magical; only because I know how angry people (trolls, mostly) here get about it.
LOL... Well, Trolls, little green people, etc., are not that bad... it's just the way they are. All part of the "Magical World".
jettredmont
Jul 21, 08:38 PM
Show me another phone that can drop calls from just the position of one finger. Nokia have their problems at the moment, but their reception has always been rock solid.
See one post directly above yours: the Nokia N1. Both points refuted with one example!
The point, again, is that the signal drop through touching the "right" spot with a finger maxes out significantly lower than the signal drop through dense body attenuation, as you get when your hand or head is blocking the signal. They are different things, but the more significant one is the one Apple is showing here.
This is just how antennas work. You can degrade a signal by detuning it, but you can stop the signal dead by attenuation.
See one post directly above yours: the Nokia N1. Both points refuted with one example!
The point, again, is that the signal drop through touching the "right" spot with a finger maxes out significantly lower than the signal drop through dense body attenuation, as you get when your hand or head is blocking the signal. They are different things, but the more significant one is the one Apple is showing here.
This is just how antennas work. You can degrade a signal by detuning it, but you can stop the signal dead by attenuation.
esaleris
Jan 10, 03:59 PM
I think in a world where you only get 2-3 seconds of a consumer's time as they walk by, the mental snapshot of folks turning over panels to "fix" them, regardless of what is actually wrong, is quite strong. Link that with a brand name, and you've made an indelible, if subtle, connection.
Spanna
Nov 25, 06:20 AM
Could someone please tell me what is thanksgiving, I have seen it being celebrated on many american television programs and I know it's got something to do with turkeys but they never seem to mention its origins. Also is it a national public holiday ?
iOS v Android
May 3, 02:04 PM
Why is it that Google always touts how open is so good, then they realize that, oh, guess we should tighten things up a bit, maybe being too open is not such a good thing.
this has nothing to do with google or openess. it is the carriers restricting access to the apps. This is the carriers and their policies. They see the apps as a threat to the plans they sell so they blocked them
this has nothing to do with google or openess. it is the carriers restricting access to the apps. This is the carriers and their policies. They see the apps as a threat to the plans they sell so they blocked them
MacRumors
Mar 28, 02:09 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2011/03/28/2011-apple-design-awards-for-both-ios-and-mac-os-x-app-store-only/)
http://images.macrumors.com/article/2011/03/28/150719-apple_design_awards_2011.jpg
eautiful blue eyes,
most eautiful blue eyes.
Beautiful Blue Eyes - Children
eautiful blue eyes and
most eautiful blue eyes
Reacent Post
http://images.macrumors.com/article/2011/03/28/150719-apple_design_awards_2011.jpg
Nekbeth
Apr 26, 10:29 PM
What if after pressing the start button, you create a timer and start it. Then pressing the cancel button invalidates and releases it. Then pressing the start button would create another timer, using the same pointer.
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
Branskins
Apr 29, 09:51 PM
Well they said that touch screens for desktops/laptops like to be horizontal in front of you, so they already said the trackpad is like their touch screen.
So I don't like the arguments about how the slider isn't good for non-touch screens: the trackpad IS the Mac's "touchscreen"
So I don't like the arguments about how the slider isn't good for non-touch screens: the trackpad IS the Mac's "touchscreen"
WildCowboy
Jan 5, 09:35 AM
There is also no guarantee that the link will be active during the keynote (aka live) .
Oh, no...I don't think much of anyone expects there to be live coverage. They did away with that some time ago. But the QT archived video should be up within a few hours after the keynote ends.
Oh, no...I don't think much of anyone expects there to be live coverage. They did away with that some time ago. But the QT archived video should be up within a few hours after the keynote ends.
vincenz
Apr 15, 05:12 PM
wow the iOS/Apple closed ecosystem must really be the WORSE THANG EVAR if google is trying to trying to do it.
Everyone's just a hypocrite..
Everyone's just a hypocrite..
Geckotek
Jan 1, 02:22 AM
My understanding is that AT&T is pretty far along in its upgrade from HPSA (3G) network to HPSA+ (faster 3G). They're doing this to maximize their existing investment in their infrastructure, and they should be able to employ LTE a little faster than Verizon has been, since LTE is a more streamlined upgrade from HPSA+. They claim that this is best for customers long-term, because when LTE (4G) coverage gives out, users can fall back on widespread HPSA+ coverage with similar performance. Whereas with Verizon, when you move out of an area with 4G coverage, you notice a HUGE drop in speed going to their ancient EV-DO technology.
Unless AT&T finally starts to upgrade their 2G network to HSPA or HSPA+, you're wrong. And Verizon's EV-DO network is still pretty speedy. It may be somewhat slower than AT&T's HSPA, but not as bad as people describe it in this forum.
Also, there is no difference what so ever in AT&T's deployment of LTE and Verizon's. LTE may have come from the same group that developed past GSM tech, but it is an entirely new tech and still requires new switches for both AT&T and Verizon. So no, AT&T will not be able to get LTE up faster than Verizon (except for the fact that AT&T will only cover part of their network if they continue their current pattern.)
Oh, and how is EV-DO ancient exactly? The current version is only about 2 years older than AT&T's WCDMA network.
FYI, I was getting about 500Kbps earlier today on my iPhone 4 here in Dallas. Not exactly lightning fast. Best I've ever seen is 3.12 Mbps and that was in a single test and wouldn't run that high consistently.
Unless AT&T finally starts to upgrade their 2G network to HSPA or HSPA+, you're wrong. And Verizon's EV-DO network is still pretty speedy. It may be somewhat slower than AT&T's HSPA, but not as bad as people describe it in this forum.
Also, there is no difference what so ever in AT&T's deployment of LTE and Verizon's. LTE may have come from the same group that developed past GSM tech, but it is an entirely new tech and still requires new switches for both AT&T and Verizon. So no, AT&T will not be able to get LTE up faster than Verizon (except for the fact that AT&T will only cover part of their network if they continue their current pattern.)
Oh, and how is EV-DO ancient exactly? The current version is only about 2 years older than AT&T's WCDMA network.
FYI, I was getting about 500Kbps earlier today on my iPhone 4 here in Dallas. Not exactly lightning fast. Best I've ever seen is 3.12 Mbps and that was in a single test and wouldn't run that high consistently.
puuukeey
Jan 9, 03:19 PM
http://www.insideout-tees.com/sucktees/well_this_sucks.gif
jfmartin
Jan 14, 08:50 AM
Found in a prototype Macbook Air used by Steve Jobs
The keynote to unfold like this
Welcome !
iPhone news (100%)
* Sales news - 5 millions sold !
* 8 g version of iPhone price drop - 329$ (50%)
* 16 g version of iPhone - 399$ (50%)
* 1.1.3 firmware as seen on the web in december (100%)
* SDK based apps in developpement will be shown
* The distribution model of iPhone apps (50%)
* through iTunes
* commercial or free
* automatic upgrade of new versions of Apps
* authentication/signature required for secure Apps
iTunes news (100%)
* More DRM-free content to compete with Amazon MP3 (50%)
* No Beatles (100%)
* Movie Rentals
* 2.99$ -3.99$
* 3 days rental period
* from the first play
* all majors (except sony)
* play on all iPod/iPhone/AppleTV/Macs
* Fox to encode version of the movie on the DVD, others studios to do the same
* Movies rental at the same time of the DVD is out to the market
* Movie for sale to see price hikes
* some more differential factors to be announced but still unknown (100%)
* iTunes 7.6 (not 8.0) (100%)
* iPods firmware to see new versions to allow movie rentals (100%)
AppleTV
* the forth leg of apple business, not a hobby anymore (100%)
* AppleTV open plateform with new tool to build software for the AppleTV
* some new tools will be shown
* software for AppleTV available though iTunes (same as iPhone software)
* new software version 2.0
* movie rentals (100%)
* make AppleTV less dependant of iTunes (rent directly from Internet) (80%)
* new options: weather, news, rss reader, web browsing? (30%)
* AppleTV device lineup
* price drop for the current AppleTV (249$) (100%)
* new AppleTV hardware with better sound support, other goodies still unknown (50%)
* 160 gigs (299$) (100%)
* 250 gigs (399$) (50%)
* new Apple Remote (100%)
Now, one more thing...
* New MacBooks pro with new case design (50%)
* New MacBooks with new case design (70%)
* Review of the current state of light portables in the market
* why is not mainstream ? What can we do to fix this ?
* introducing Macbook Air (100%)
* no SSD drive but 1.8 inch drives up to 160 gigs
* no optical drives, sold seperately
* two screen sizes: 13", 11-12"
* aluminum, grey or black
* very thin!!!
* LED display
* i/o ports very special to allow slimmer case design (details unknown)
* 1500$ - 2000$
Thanks to everybody for coming !
1) Announces deal with movie companies for rentals through iTunes. These rentals will last the running time of the movie and cost $20.
2) :apple:TV updated so that it can stream rental movies, but only to analog tvs.
3) "There's Something in the Air" slogan turns out to be Apple branded oxygen dispenser called the iMask
4) 16GB iPhone released for original price ($599)
5) Mac mini discontinued
6) Surprise switch back to Motorola chip (G6) with immediate updates for all laptop & desktop models
7) "One More Thing" is rumored lightweight notebook (also doubles as hot plate)
8) Steve announces the date he will step down as iCEO of Apple
Before I get flamed, think about how little everyone will have to complain about the actual keynote in light of my pessimistic predictions (I don't actually think any of these things will happen).
The keynote to unfold like this
Welcome !
iPhone news (100%)
* Sales news - 5 millions sold !
* 8 g version of iPhone price drop - 329$ (50%)
* 16 g version of iPhone - 399$ (50%)
* 1.1.3 firmware as seen on the web in december (100%)
* SDK based apps in developpement will be shown
* The distribution model of iPhone apps (50%)
* through iTunes
* commercial or free
* automatic upgrade of new versions of Apps
* authentication/signature required for secure Apps
iTunes news (100%)
* More DRM-free content to compete with Amazon MP3 (50%)
* No Beatles (100%)
* Movie Rentals
* 2.99$ -3.99$
* 3 days rental period
* from the first play
* all majors (except sony)
* play on all iPod/iPhone/AppleTV/Macs
* Fox to encode version of the movie on the DVD, others studios to do the same
* Movies rental at the same time of the DVD is out to the market
* Movie for sale to see price hikes
* some more differential factors to be announced but still unknown (100%)
* iTunes 7.6 (not 8.0) (100%)
* iPods firmware to see new versions to allow movie rentals (100%)
AppleTV
* the forth leg of apple business, not a hobby anymore (100%)
* AppleTV open plateform with new tool to build software for the AppleTV
* some new tools will be shown
* software for AppleTV available though iTunes (same as iPhone software)
* new software version 2.0
* movie rentals (100%)
* make AppleTV less dependant of iTunes (rent directly from Internet) (80%)
* new options: weather, news, rss reader, web browsing? (30%)
* AppleTV device lineup
* price drop for the current AppleTV (249$) (100%)
* new AppleTV hardware with better sound support, other goodies still unknown (50%)
* 160 gigs (299$) (100%)
* 250 gigs (399$) (50%)
* new Apple Remote (100%)
Now, one more thing...
* New MacBooks pro with new case design (50%)
* New MacBooks with new case design (70%)
* Review of the current state of light portables in the market
* why is not mainstream ? What can we do to fix this ?
* introducing Macbook Air (100%)
* no SSD drive but 1.8 inch drives up to 160 gigs
* no optical drives, sold seperately
* two screen sizes: 13", 11-12"
* aluminum, grey or black
* very thin!!!
* LED display
* i/o ports very special to allow slimmer case design (details unknown)
* 1500$ - 2000$
Thanks to everybody for coming !
1) Announces deal with movie companies for rentals through iTunes. These rentals will last the running time of the movie and cost $20.
2) :apple:TV updated so that it can stream rental movies, but only to analog tvs.
3) "There's Something in the Air" slogan turns out to be Apple branded oxygen dispenser called the iMask
4) 16GB iPhone released for original price ($599)
5) Mac mini discontinued
6) Surprise switch back to Motorola chip (G6) with immediate updates for all laptop & desktop models
7) "One More Thing" is rumored lightweight notebook (also doubles as hot plate)
8) Steve announces the date he will step down as iCEO of Apple
Before I get flamed, think about how little everyone will have to complain about the actual keynote in light of my pessimistic predictions (I don't actually think any of these things will happen).
the.snitch
Jan 5, 08:53 PM
Thanks arn, this is exactly what I wanted :)
On keynote days, i generally set my homepage to the appleevents page, and make sure I dont go to any other sites that day. Then I just wander over to my local starbucks high speed hotspot in downtown auckland and watch the whole stream in H.264 :cool:
I hate finding out what will be released until after i have seen the keynote - Its like someone killing a movie for you, by telling you the twists just before you go see it. This way it's fresh, and you listen to Jobs' every word with anticipation
On keynote days, i generally set my homepage to the appleevents page, and make sure I dont go to any other sites that day. Then I just wander over to my local starbucks high speed hotspot in downtown auckland and watch the whole stream in H.264 :cool:
I hate finding out what will be released until after i have seen the keynote - Its like someone killing a movie for you, by telling you the twists just before you go see it. This way it's fresh, and you listen to Jobs' every word with anticipation
MacSedgley
Aug 8, 01:48 PM
I was under the impression LCD's can't GET "Burn-In"... And that they MIGHT get "Image Persistance", which isn't permanent.
I stand corrected. 'Image Persistance' took about a week to go away on mine, and it was left on front row for about an hour.
I stand corrected. 'Image Persistance' took about a week to go away on mine, and it was left on front row for about an hour.
TheSideshow
Apr 21, 09:14 PM
Hopefully it's totally new from the ground up, ditch all the Win32/legacy crap that's hindered MSFT for years.
That would be idiotic by Microsoft.
That would be idiotic by Microsoft.
0 comments:
Post a Comment