Skip to main content

Verizon Prepared to Handle iPhone in 2010 — If Exclusivity Ends with AT&T

Verizon Prepared to Handle iPhone in 2010 — If Exclusivity Ends with AT&T: "

Could Verizon Handle the iPhone (Chart)



If Apple ends US iPhone exclusivity with AT&T in 2010, could Verizon handle the handset that currently crushes service in data-dense cities like San Francisco and New York? BusinessWeek scored the quote from Verizon Wireless Chief Technology Officer Anthony Melone:

“We have put things in place already. We are prepared to support that traffic.”

“It comes down to backing that process with money. We’ve been more consistent than any carrier in the last 10 years investing year over year.”

“We will handle it if we ever get it.”

To make sure we’re absolutely crystal clear, no one is saying Verizon will be getting the iPhone next year, Verizon is just claiming their network is up to the task if they do.

When reached for comment on that claim, AT&T wouldn’t address it directly but offered:

“We think we are leading the way in how people use their wireless phones. We operate a great network.”

This comes as AT&T is facing increased media (and satirical) attention over their lack of infrastructure investment despite the increase in data revenue the iPhone has brought them. To their credit, however, they are continuing to publicize the “improved wireless network experience” they have invested in for certain areas of the US.

[Thanks to the Reptile!]


This is a story by the iPhone Blog. This feed is sponsored by The iPhone Blog Store.

Verizon Prepared to Handle iPhone in 2010 — If Exclusivity Ends with AT&T

Comments

Popular posts from this blog

Calculate Age or Years Elapsed in an Apple Numbers Sheet

Often it is useful to show a person's age or years elapsed since a start date.  For example: Hire Date: 4/1/2012 - Years of service: 1.5 Here's a formula for Numbers that will do the trick: =IF(ISBLANK(cellReference),"",DATEDIF( cellReference ,TODAY(),"D")/365.2425) Replace the cellReference with the actual cell reference. i.e.: (A1)  So here's the breakdown: =IF(ISBLANK(cellReference),""  --- this checks to see if there is a start date in your referenced cell.  For example say your spreadsheet has a cell (A1) that holds a date of birth, but it is not yet referenced, this will result in an empty string. (Blank cell) Otherwise, it calculates the years:  DATEDIF( cellReference ,TODAY(),"D")/365.2425) DATEDIF compares two dates. The first date is your cell reference i.e.: (A1) The second is the current date according to your computer, iOS device: TODAY()  returning the Day -  "D" Then the difference is divi...