Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
macOS & iOS Developer Playground
iOS Development
ViewController issue.... newbie sorry ;-)
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="patrick_" data-source="post: 1711788" data-attributes="member: 375728"><p>Hi Guys just started my first project and I can't get it to work properly</p><p></p><p>Its a keyword search for my website</p><p></p><p>[CODE]</p><p>#import "ViewController.h"</p><p></p><p>@interface ViewController ()</p><p></p><p>@end</p><p></p><p>@implementation ViewController</p><p></p><p>- (void)viewDidLoad {</p><p> [super viewDidLoad];</p><p> </p><p> NSString *webSite = @"http://www.mydomain.eu/";</p><p> NSURL *url = [NSURL URLWithString:webSite];</p><p> NSURLRequest *request = [NSURLRequest requestWithURL:url];</p><p> </p><p> [webPage loadRequest:request];</p><p> </p><p>}</p><p></p><p>-(IBAction)goToWebSite:(id)sender {</p><p> NSString *webSite = @""http://www.mydomain.eu/m/?keyword=,addressBar.text];</p><p> [webPage loadRequest:request];</p><p> </p><p>}</p><p>- (void)didReceiveMemoryWarning {</p><p> [super didReceiveMemoryWarning];</p><p> // Dispose of any resources that can be recreated.</p><p>}</p><p>@end</p><p>[/CODE]</p><p></p><p>The app loads so the first part is working but after a its need to fire the submit goto</p><p></p><p>[dead link removed]</p><p></p><p>it loads my website and after entering a keyword it should go to</p><p></p><p>[dead link removed]</p><p></p><p>I think i,m close..... but not close enough... plz help me out</p></blockquote><p></p>
[QUOTE="patrick_, post: 1711788, member: 375728"] Hi Guys just started my first project and I can't get it to work properly Its a keyword search for my website [CODE] #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; NSString *webSite = @"http://www.mydomain.eu/"; NSURL *url = [NSURL URLWithString:webSite]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webPage loadRequest:request]; } -(IBAction)goToWebSite:(id)sender { NSString *webSite = @""http://www.mydomain.eu/m/?keyword=,addressBar.text]; [webPage loadRequest:request]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end [/CODE] The app loads so the first part is working but after a its need to fire the submit goto [dead link removed] it loads my website and after entering a keyword it should go to [dead link removed] I think i,m close..... but not close enough... plz help me out [/QUOTE]
Verification
Name this item. 🍎
Post reply
Forums
macOS & iOS Developer Playground
iOS Development
ViewController issue.... newbie sorry ;-)
Top