-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Importing original Apple sample code.
- Loading branch information
0 parents
commit acdbf63
Showing
22 changed files
with
3,751 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
File: Earthquake.h | ||
Abstract: The model class that stores the information about an earthquake. | ||
Version: 1.8 | ||
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple | ||
Inc. ("Apple") in consideration of your agreement to the following | ||
terms, and your use, installation, modification or redistribution of | ||
this Apple software constitutes acceptance of these terms. If you do | ||
not agree with these terms, please do not use, install, modify or | ||
redistribute this Apple software. | ||
In consideration of your agreement to abide by the following terms, and | ||
subject to these terms, Apple grants you a personal, non-exclusive | ||
license, under Apple's copyrights in this original Apple software (the | ||
"Apple Software"), to use, reproduce, modify and redistribute the Apple | ||
Software, with or without modifications, in source and/or binary forms; | ||
provided that if you redistribute the Apple Software in its entirety and | ||
without modifications, you must retain this notice and the following | ||
text and disclaimers in all such redistributions of the Apple Software. | ||
Neither the name, trademarks, service marks or logos of Apple Inc. may | ||
be used to endorse or promote products derived from the Apple Software | ||
without specific prior written permission from Apple. Except as | ||
expressly stated in this notice, no other rights or licenses, express or | ||
implied, are granted by Apple herein, including but not limited to any | ||
patent rights that may be infringed by your derivative works or by other | ||
works in which the Apple Software may be incorporated. | ||
The Apple Software is provided by Apple on an "AS IS" basis. APPLE | ||
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION | ||
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND | ||
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. | ||
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL | ||
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, | ||
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED | ||
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), | ||
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
Copyright (C) 2009 Apple Inc. All Rights Reserved. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface Earthquake : NSObject { | ||
@private | ||
// Magnitude of the earthquake on the Richter scale. | ||
CGFloat magnitude; | ||
// Name of the location of the earthquake. | ||
NSString *location; | ||
// Date and time at which the earthquake occurred. | ||
NSDate *date; | ||
// Holds the URL to the USGS web page of the earthquake. The application uses this URL to open that page in Safari. | ||
NSString *USGSWebLink; | ||
// Latitude and longitude of the earthquake. These properties are not displayed by the application, but are used to | ||
// create a URL for opening the Maps application. They could alternatively be used in conjuction with MapKit | ||
// to be shown in a map view. | ||
double latitude; | ||
double longitude; | ||
} | ||
|
||
@property (nonatomic, assign) CGFloat magnitude; | ||
@property (nonatomic, retain) NSString *location; | ||
@property (nonatomic, retain) NSDate *date; | ||
@property (nonatomic, retain) NSString *USGSWebLink; | ||
@property (nonatomic, assign) double latitude; | ||
@property (nonatomic, assign) double longitude; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
File: Earthquake.m | ||
Abstract: The model class that stores the information about an earthquake. | ||
Version: 1.8 | ||
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple | ||
Inc. ("Apple") in consideration of your agreement to the following | ||
terms, and your use, installation, modification or redistribution of | ||
this Apple software constitutes acceptance of these terms. If you do | ||
not agree with these terms, please do not use, install, modify or | ||
redistribute this Apple software. | ||
In consideration of your agreement to abide by the following terms, and | ||
subject to these terms, Apple grants you a personal, non-exclusive | ||
license, under Apple's copyrights in this original Apple software (the | ||
"Apple Software"), to use, reproduce, modify and redistribute the Apple | ||
Software, with or without modifications, in source and/or binary forms; | ||
provided that if you redistribute the Apple Software in its entirety and | ||
without modifications, you must retain this notice and the following | ||
text and disclaimers in all such redistributions of the Apple Software. | ||
Neither the name, trademarks, service marks or logos of Apple Inc. may | ||
be used to endorse or promote products derived from the Apple Software | ||
without specific prior written permission from Apple. Except as | ||
expressly stated in this notice, no other rights or licenses, express or | ||
implied, are granted by Apple herein, including but not limited to any | ||
patent rights that may be infringed by your derivative works or by other | ||
works in which the Apple Software may be incorporated. | ||
The Apple Software is provided by Apple on an "AS IS" basis. APPLE | ||
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION | ||
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND | ||
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. | ||
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL | ||
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, | ||
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED | ||
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), | ||
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
Copyright (C) 2009 Apple Inc. All Rights Reserved. | ||
*/ | ||
|
||
#import "Earthquake.h" | ||
|
||
@implementation Earthquake | ||
|
||
@synthesize magnitude; | ||
@synthesize location; | ||
@synthesize date; | ||
@synthesize USGSWebLink; | ||
@synthesize latitude; | ||
@synthesize longitude; | ||
|
||
- (void)dealloc { | ||
[location release]; | ||
[date release]; | ||
[USGSWebLink release]; | ||
[super dealloc]; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
File: RootViewController.h | ||
Abstract: View controller for displaying the earthquake list. | ||
Version: 1.8 | ||
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple | ||
Inc. ("Apple") in consideration of your agreement to the following | ||
terms, and your use, installation, modification or redistribution of | ||
this Apple software constitutes acceptance of these terms. If you do | ||
not agree with these terms, please do not use, install, modify or | ||
redistribute this Apple software. | ||
In consideration of your agreement to abide by the following terms, and | ||
subject to these terms, Apple grants you a personal, non-exclusive | ||
license, under Apple's copyrights in this original Apple software (the | ||
"Apple Software"), to use, reproduce, modify and redistribute the Apple | ||
Software, with or without modifications, in source and/or binary forms; | ||
provided that if you redistribute the Apple Software in its entirety and | ||
without modifications, you must retain this notice and the following | ||
text and disclaimers in all such redistributions of the Apple Software. | ||
Neither the name, trademarks, service marks or logos of Apple Inc. may | ||
be used to endorse or promote products derived from the Apple Software | ||
without specific prior written permission from Apple. Except as | ||
expressly stated in this notice, no other rights or licenses, express or | ||
implied, are granted by Apple herein, including but not limited to any | ||
patent rights that may be infringed by your derivative works or by other | ||
works in which the Apple Software may be incorporated. | ||
The Apple Software is provided by Apple on an "AS IS" basis. APPLE | ||
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION | ||
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND | ||
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. | ||
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL | ||
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, | ||
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED | ||
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), | ||
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
Copyright (C) 2009 Apple Inc. All Rights Reserved. | ||
*/ | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface RootViewController : UITableViewController <UIActionSheetDelegate> { | ||
// This array is passed to the controller by the application delegate. | ||
NSArray *earthquakeList; | ||
// This date formatter is used to convert NSDate objects to NSString objects, using the user's preferred formats. | ||
NSDateFormatter *dateFormatter; | ||
} | ||
|
||
@property (nonatomic, retain) NSArray *earthquakeList; | ||
@property (nonatomic, retain, readonly) NSDateFormatter *dateFormatter; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
/* | ||
File: RootViewController.m | ||
Abstract: View controller for displaying the earthquake list. | ||
Version: 1.8 | ||
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple | ||
Inc. ("Apple") in consideration of your agreement to the following | ||
terms, and your use, installation, modification or redistribution of | ||
this Apple software constitutes acceptance of these terms. If you do | ||
not agree with these terms, please do not use, install, modify or | ||
redistribute this Apple software. | ||
In consideration of your agreement to abide by the following terms, and | ||
subject to these terms, Apple grants you a personal, non-exclusive | ||
license, under Apple's copyrights in this original Apple software (the | ||
"Apple Software"), to use, reproduce, modify and redistribute the Apple | ||
Software, with or without modifications, in source and/or binary forms; | ||
provided that if you redistribute the Apple Software in its entirety and | ||
without modifications, you must retain this notice and the following | ||
text and disclaimers in all such redistributions of the Apple Software. | ||
Neither the name, trademarks, service marks or logos of Apple Inc. may | ||
be used to endorse or promote products derived from the Apple Software | ||
without specific prior written permission from Apple. Except as | ||
expressly stated in this notice, no other rights or licenses, express or | ||
implied, are granted by Apple herein, including but not limited to any | ||
patent rights that may be infringed by your derivative works or by other | ||
works in which the Apple Software may be incorporated. | ||
The Apple Software is provided by Apple on an "AS IS" basis. APPLE | ||
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION | ||
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND | ||
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. | ||
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL | ||
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, | ||
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED | ||
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), | ||
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. | ||
Copyright (C) 2009 Apple Inc. All Rights Reserved. | ||
*/ | ||
|
||
#import "RootViewController.h" | ||
#import "Earthquake.h" | ||
|
||
@implementation RootViewController | ||
|
||
@synthesize earthquakeList; | ||
|
||
- (void)dealloc { | ||
[earthquakeList release]; | ||
[dateFormatter release]; | ||
[super dealloc]; | ||
} | ||
|
||
- (void)viewDidLoad { | ||
[super viewDidLoad]; | ||
// The table row height is not the standard value. Since all the rows have the same height, it is more efficient to | ||
// set this property on the table, rather than using the delegate method -tableView:heightForRowAtIndexPath:. | ||
self.tableView.rowHeight = 48.0; | ||
} | ||
|
||
// On-demand initializer for read-only property. | ||
- (NSDateFormatter *)dateFormatter { | ||
if (dateFormatter == nil) { | ||
dateFormatter = [[NSDateFormatter alloc] init]; | ||
[dateFormatter setDateStyle:NSDateFormatterMediumStyle]; | ||
[dateFormatter setTimeStyle:NSDateFormatterMediumStyle]; | ||
} | ||
return dateFormatter; | ||
} | ||
|
||
// Based on the magnitude of the earthquake, return an image indicating its seismic strength. | ||
- (UIImage *)imageForMagnitude:(CGFloat)magnitude { | ||
if (magnitude >= 5.0) { | ||
return [UIImage imageNamed:@"5.0.png"]; | ||
} | ||
if (magnitude >= 4.0) { | ||
return [UIImage imageNamed:@"4.0.png"]; | ||
} | ||
if (magnitude >= 3.0) { | ||
return [UIImage imageNamed:@"3.0.png"]; | ||
} | ||
if (magnitude >= 2.0) { | ||
return [UIImage imageNamed:@"2.0.png"]; | ||
} | ||
return nil; | ||
} | ||
|
||
// The number of rows is equal to the number of earthquakes in the array. | ||
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { | ||
return [earthquakeList count]; | ||
} | ||
|
||
// The cell uses a custom layout, but otherwise has standard behavior for UITableViewCell. In these cases, | ||
// it's preferable to modify the view hierarchy of the cell's content view, rather than subclassing. Instead, | ||
// view "tags" are used to identify specific controls, such as labels, image views, etc. | ||
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { | ||
// Each subview in the cell will be identified by a unique tag. | ||
static NSUInteger const kLocationLabelTag = 2; | ||
static NSUInteger const kDateLabelTag = 3; | ||
static NSUInteger const kMagnitudeLabelTag = 4; | ||
static NSUInteger const kMagnitudeImageTag = 5; | ||
|
||
// Declare references to the subviews which will display the earthquake data. | ||
UILabel *locationLabel = nil; | ||
UILabel *dateLabel = nil; | ||
UILabel *magnitudeLabel = nil; | ||
UIImageView *magnitudeImage = nil; | ||
|
||
static NSString *kEarthquakeCellID = @"EarthquakeCellID"; | ||
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kEarthquakeCellID]; | ||
if (cell == nil) { | ||
// No reusable cell was available, so we create a new cell and configure its subviews. | ||
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kEarthquakeCellID] autorelease]; | ||
|
||
locationLabel = [[[UILabel alloc] initWithFrame:CGRectMake(10, 3, 190, 20)] autorelease]; | ||
locationLabel.tag = kLocationLabelTag; | ||
locationLabel.font = [UIFont boldSystemFontOfSize:14]; | ||
[cell.contentView addSubview:locationLabel]; | ||
|
||
dateLabel = [[[UILabel alloc] initWithFrame:CGRectMake(10, 28, 170, 14)] autorelease]; | ||
dateLabel.tag = kDateLabelTag; | ||
dateLabel.font = [UIFont systemFontOfSize:10]; | ||
[cell.contentView addSubview:dateLabel]; | ||
|
||
magnitudeLabel = [[[UILabel alloc] initWithFrame:CGRectMake(277, 9, 170, 29)] autorelease]; | ||
magnitudeLabel.tag = kMagnitudeLabelTag; | ||
magnitudeLabel.font = [UIFont boldSystemFontOfSize:24]; | ||
magnitudeLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin; | ||
[cell.contentView addSubview:magnitudeLabel]; | ||
|
||
magnitudeImage = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"5.0.png"]] autorelease]; | ||
CGRect imageFrame = magnitudeImage.frame; | ||
imageFrame.origin = CGPointMake(180, 2); | ||
magnitudeImage.frame = imageFrame; | ||
magnitudeImage.tag = kMagnitudeImageTag; | ||
magnitudeImage.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin; | ||
[cell.contentView addSubview:magnitudeImage]; | ||
} else { | ||
// A reusable cell was available, so we just need to get a reference to the subviews using their tags. | ||
locationLabel = (UILabel *)[cell.contentView viewWithTag:kLocationLabelTag]; | ||
dateLabel = (UILabel *)[cell.contentView viewWithTag:kDateLabelTag]; | ||
magnitudeLabel = (UILabel *)[cell.contentView viewWithTag:kMagnitudeLabelTag]; | ||
magnitudeImage = (UIImageView *)[cell.contentView viewWithTag:kMagnitudeImageTag]; | ||
} | ||
|
||
// Get the specific earthquake for this row. | ||
Earthquake *earthquake = [earthquakeList objectAtIndex:indexPath.row]; | ||
|
||
// Set the relevant data for each subview in the cell. | ||
locationLabel.text = earthquake.location; | ||
dateLabel.text = [self.dateFormatter stringFromDate:earthquake.date]; | ||
magnitudeLabel.text = [NSString stringWithFormat:@"%.1f", earthquake.magnitude]; | ||
magnitudeImage.image = [self imageForMagnitude:earthquake.magnitude]; | ||
|
||
return cell; | ||
} | ||
|
||
// When the user taps a row in the table, display the USGS web page that displays details of the earthquake they selected. | ||
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { | ||
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"External App Sheet Title", @"Title for sheet displayed with options for displaying Earthquake data in other applications") delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", @"Cancel") destructiveButtonTitle:nil otherButtonTitles:NSLocalizedString(@"Show USGS Site in Safari", @"Show USGS Site in Safari"), NSLocalizedString(@"Show Location in Maps", @"Show Location in Maps"), nil]; | ||
[sheet showInView:self.view]; | ||
[sheet release]; | ||
} | ||
|
||
// Called when the user selects an option in the sheet. The sheet will automatically be dismissed. | ||
- (void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex { | ||
NSIndexPath *selectedIndexPath = [self.tableView indexPathForSelectedRow]; | ||
Earthquake *earthquake = (Earthquake *)[earthquakeList objectAtIndex:selectedIndexPath.row]; | ||
switch (buttonIndex) { | ||
case 0: { | ||
NSString *webLink = [earthquake USGSWebLink]; | ||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:webLink]]; | ||
} break; | ||
case 1: { | ||
static NSString * const kMapsBaseURL = @"http://maps.google.com/maps?"; | ||
NSString *mapsQuery = [NSString stringWithFormat:@"z=6&t=h&ll=%f,%f", earthquake.latitude, earthquake.longitude]; | ||
mapsQuery = [mapsQuery stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | ||
NSString *mapsURLString = [kMapsBaseURL stringByAppendingString:mapsQuery]; | ||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:mapsURLString]]; | ||
} break; | ||
default: | ||
break; | ||
} | ||
[self.tableView deselectRowAtIndexPath:selectedIndexPath animated:YES]; | ||
} | ||
|
||
@end | ||
|
Oops, something went wrong.