Re: Custom Tableview cell and grouped tables

2009-11-19 Thread Mark Bateman
the table's style is initWithFrame:style: > > Luke > > On Nov 19, 2009, at 11:17 AM, Mark Bateman wrote: > >> 1. this is iphone >> 2. after i change the UItableview style to the "grouped style" the table >> continues to show as before a regular table w

Re: Custom Tableview cell and grouped tables

2009-11-19 Thread Mark Bateman
z Anderson wrote: > On 19 Nov 2009, at 12:45 PM, Mark Bateman wrote: > >> I have created a custom tableview cell and it works great, but when I choose >> the grouped view in the tableview nothing happens, what have I missed. > > You've told us next to nothing, so you real

Custom Tableview cell and grouped tables

2009-11-19 Thread Mark Bateman
Hi, I have created a custom tableview cell and it works great, but when I choose the grouped view in the tableview nothing happens, what have I missed. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moder

Re: Help with Background Tasks

2009-11-19 Thread Mark Bateman
18, 2009, at 2:35 PM, Jens Alfke wrote: > > On Nov 18, 2009, at 11:21 AM, Mark Bateman wrote: > >> I am developing an App with a table that will hold URL content. I want to >> download that in the background and then have it update the table as it >> arrives.

Help with Background Tasks

2009-11-18 Thread Mark Bateman
Hi, I am developing an App with a table that will hold URL content. I want to download that in the background and then have it update the table as it arrives. I tried using [self performSelectorInBackground:@selector(MakeURLRequest:) withObject:UrlRequest]; but I can't get it to return an

UITabBar & UIActionSheet

2009-10-07 Thread Mark Bateman
Hi, I have an app that uses a TabBarController and on certain of the tabbar items I want the user to be presented with a UIActionsheet even if the user presses the the same tab bar item that is currently selected. I have tried the viewwillappear method and that works only if i select an

Drawing a graph & testing ranges

2009-09-15 Thread Mark Bateman
Hi, I have a completed app that calculates graph points x and y coordinates. I want to present these on a graph that has an acceptable "envelope" of coordinates. I'm guessing that i need to learn how to use quartz to draw lines pixel by pixel to represent this on a UIview. is there any

TAB bar and nav bar together

2009-09-15 Thread Mark Bateman
Hi, I have an app that uses a TAB bar controller to launch "n" view controllers through my main window.XIB. I wanted each of them to have a nav bar with custom buttons and so I added a nav bar controller to the XIB for each one. so the hierarchy in IB is Tab bar controller -> tab bar -

Re: enabling/ disabling a uitextfield

2009-09-15 Thread Mark Bateman
Hi, anyone know how I can enable ./ disable a UItext field outside of IB. I can do this as part of the XIB but I want to disable interaction on a particular condition. Also is there a keyboard property i can set to enable the caps lock key (not the auto capitalization) __

enabling/ disabling a uitextfield

2009-08-29 Thread Mark Bateman
Hi, anyone know how I can enable ./ disable a UItext field outside of IB. I can do this as part of the XIB but I want to disable interaction on a particular condition. Also is there a keyboard property i can set to enable the caps lock key (not the auto capitalization) ___

TAB bar and nav bar together

2009-08-29 Thread Mark Bateman
Hi, I have an app that uses a TAB bar controller to launch "n" view controllers through my main window.XIB. I wanted each of them to have a nav bar with custom buttons and so I added a nav bar controller to the XIB for each one. so the hierarchy in IB is Tab bar controller -> tab bar -

Drawing a graph & testing ranges

2009-08-29 Thread Mark Bateman
Hi, I have a completed app that calculates graph points x and y coordinates. I want to present these on a graph that has an acceptable "envelope" of coordinates. I'm guessing that i need to learn how to use quartz to draw lines pixel by pixel to represent this on a UIview. is there any

Can't figure our Tableview details

2009-06-16 Thread Mark Bateman
Hi, I'm trying to get my table view to open a lower level webview window but I can't figure out the best method to show the webview. if I use self.view = mywebview it shows the next window ok but it won't allow be to migrate back to the table view. the top level is a tab bar controller.

Reading cab into object

2009-04-03 Thread Mark Bateman
Hi I have a csv file I want to use as a source for a searchable list The csv has 16 fields. I have managed to read the csv line by line into an array I'm having difficulty figuring out how to load an instance of an object with the single line of the array and initialising each of the obje

NSBundle getting location of file in bundle

2008-06-05 Thread Mark Bateman
I'm currently hardcoding the file location just for debugging my app. It works great. I'm now trying to use NSBundle to insert the resource location string for a webview. I'm using locally stored content inside the app bundle. I tried using: NSMutableString *url; url = [NSBundle path

Re: knowing when WebView is done

2008-06-05 Thread Mark Bateman
Tim, I use the webviewdidfinishload method I'm not usre if that is any use to you...I'm quite new so I hope I'm not missing something obvious in your message. Mark. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

NewBie: Trying to load a html file bundled with app...

2008-06-02 Thread Mark Bateman
Hi, I'm currently using this code line to load a http web page: [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.abc123.com";]]]; Is their a way I can modify this to load a htm file that is included in the app bundle: Thanks, Mark. ___

filtering a list like address book

2008-05-29 Thread Mark Bateman
Hi, I'm writing an application to display a list of nav aids. I'd like to be able to search the list like the iphone address book does. I.e. you type and the list filters in realtime. does anyone have any code snippets to point me in the right direction. __