views:

6

answers:

1

stop = [[UIButton alloc] style:UIButtonTypeCustom target:self identifier:stop action:@selector[webView stopLoading]];

when i am using this is giving syntax eerror : is expected

+1  A: 

The proper syntax is @selector(stopLoading)

St3fan