OK, I'm somewhat a noob with this so any help would be greatly appreciated. This is my goal. Have a view with a text field and a button. When the button is clicked it with text in the field it will alter the url and bring the user to a web view.
So for example if the user were to enter apple into the text field the url would now be google.com/apple
For the page with the button on it this is the code i have
.h
@interface MyStats : UIViewController {
IBOutlet UIScrollView *scrollview;
}
-(IBAction)goBack;
-(IBAction)showStatsWeb;
@end
.m
#import "MyStats.h"
#import "StatsWeb.h"
@implementation MyStats
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[scrollview setScrollEnabled:YES];
[scrollview setContentSize:CGSizeMake(320, 700)];
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
-(IBAction)showStatsWeb
{
StatsWeb *view9000 = [[StatsWeb alloc] initWithNibName:@"StatsWeb" bundle:nil];
view9000.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:view9000 animated:YES];
}
-(IBAction)goBack
{
[self dismissModalViewControllerAnimated:YES];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
and for the web view this is the code i currently have
.h
@interface StatsWeb : UIViewController {
IBOutlet UIWebView *webStats;
IBOutlet UIActivityIndicatorView *activity;
NSTimer *timer;
}
@property (nonatomic, retain) UIWebView *webStats;
@property (nonatomic, retain) UIActivityIndicatorView *activity;
-(IBAction)goBack;
@end
.m
#import "StatsWeb.h"
@implementation StatsWeb
@synthesize webStats;
@synthesize activity;
- (void)webView:(UIWebView *)webStats didFailLoadWithError:(NSError *)error{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Internet Connection Required" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
}
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
/*
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization.
}
return self;
}
*/
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
[webStats loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://google.com/"]]];
timer = [NSTimer scheduledTimerWithTimeInterval:(1.0/2.0) target:self selector:@selector(tick) userInfo:nil repeats:YES];
}
-(IBAction)goBack
{
[self dismissModalViewControllerAnimated:YES];
}
-(void)tick {
if(!webStats.loading)
[activity stopAnimating];
else
[activity startAnimating];
}
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc. that aren't in use.
}
- (void)viewDidUnload {
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[webStats release];
[activity release];
[super dealloc];
}
@end
If someone could manage to help me that would be greatly appreciated and if the help is good there could be some $ involved. THANKS!