[MonoTouch] UITableView Scenario Help Needed ---

2012-06-30 Thread proindigo
Hello friends. I have scenario which I will try to explain in details. I have a table ClientAssessments [AssessmentID, ProjectID, ProjectName, StartDate]. Now I am fetching all the data by simple select query and want to show it on a UITableView column. I want that when someone touches a particu

[MonoTouch] Include both retina and non-retina images?

2012-06-30 Thread rnendel11
Packaging this app up and I'm not sure if I need retina icons and splash screens - it is not a retina app, any experience/advice/rules to share? -- View this message in context: http://monotouch.2284126.n4.nabble.com/Include-both-retina-and-non-retina-images-tp4655681.html Sent from the MonoTouch

Re: [MonoTouch] Include both retina and non-retina images?

2012-06-30 Thread rnendel11
I'm assuming I do not *need* to add retina launch screens unless I want to take advantage of making the launch screen look as good as possible. On a retina device, the standard launch screen is displayed if a retina-specific screen is not specified. Not including retina launch screens is not a "r

Re: [MonoTouch] How to apply LUT to CGImage or UIImage in IOS

2012-06-30 Thread pritish
Yes!! its Look Up Table -- View this message in context: http://monotouch.2284126.n4.nabble.com/How-to-apply-LUT-to-CGImage-or-UIImage-in-IOS-tp4655655p4655679.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing list

[MonoTouch] Trying to create a MonoTouch.Dialoag based on a dataset

2012-06-30 Thread vulcanCCIT
I have a web service that returns a dataset with a list of billboard names, ip addresses, street addresses, etc.. I thought I could pull down the dataset from the web service add each board to a List and then bind the list to the dialog. Boards is a class with just a bunch of strings representing

Re: [MonoTouch] MonoTouch with Sqlite Critical Scenario Help Needed

2012-06-30 Thread proindigo
Well just sorted out the issue. Rechecked my code blocks and used the scopes{} properly and now the data is being inserted into the table just fine. Now I am facing another issue. I am generating an xml file by serializing the output received from a webservice and am trying to parse this document a

[MonoTouch] Binding an interface that conforms to multiple protocols

2012-06-30 Thread tkacem
Hi All, I have this question that nobody cared to answer so far !! How can I bind an interface that conforms to many protocols in monotouch. Example: in objective-c it would look like @interface XX : BaseClass Any help would be greatly appreciated. Thanks, Thabet -- View this message in cont

[MonoTouch] Problem building for Release|iPhone "Microsoft.Win32.RegistryKey"

2012-06-30 Thread efontana
I've been building my app for a week now using the iPHone simulator and now when I tried to build a Release|iPhone i'm getting an error: "Can not resolve reference: Microsoft.Win32.RegistryKey (MT2002)" I'm using MT: Apple Developer Tools: Xcode 4.3.1 (1176) Build 4E1019 Monoto

Re: [MonoTouch] MonoTouch with Sqlite Critical Scenario Help Needed

2012-06-30 Thread proindigo
Well just incorporate some checking logic so that the spurious file creation can be prevented. Working fine now. App. is checking if the directory and file pre-exists and if not, proceeds to create them. But I am having issues inserting data into table. The exception I am getting is --> No connecti

[MonoTouch] Just installed MonoTouch and can't examine .xib

2012-06-30 Thread Duffy
Just installed everything and started up a new empty solution, added a .xib to take a look a how IB interacts with the IDE and got the following error: Error updating Objective-C type information. Custom attribute type 0x43 is not supported. -- View this message in context: http://monotouch.2284

Re: [MonoTouch] DialogViewController and async search

2012-06-30 Thread Kim Bjørn Tiedemann
Hi Nic, Thanks a lot for your reply. I am still having issues and the following VERY simple example does not reload the data in the table: public partial class SearchViewController : DialogViewController { public SearchViewController () : base (UITableViewStyle.Plain, null) { Root = new RootE

[MonoTouch] connecting to web services - major problem

2012-06-30 Thread umauk01
Hi, I am trying from past 3 weeks and going round the circles no joy connecting to https web service Please see the attached sample project http://monotouch.2284126.n4.nabble.com/file/n4655633/ipad12Mono.zip ipad12Mono.zip tried to contact support : got the below sets .. but, I could not work

Re: [MonoTouch] SplitViewController

2012-06-30 Thread René Ruppert
The UISplitViewController accepts an array of two controllers that can be set via ViewControllers property if I remember correctly. The first one is the (new) master, the 2nd one is the (new) detail controller. If you want to keep one or the other, you'll have to get it first and set both again. R

Re: [MonoTouch] Can Rolf or Sebastien please comment this question on StackOverflow?

2012-06-30 Thread René Ruppert
Hey Nic, the fascinating and odd thing is: the problem with collected cells happens ONLY on the device for me. I have never been able to reproduce it on the Sim even though GC is running constantly. But I was able to fix it on the device by keeping refs. René 2012/6/28 Nic Wise > Hi Rolf > > Mo

Re: [MonoTouch] How to apply LUT to CGImage or UIImage in IOS

2012-06-30 Thread Steve Maier
A LUT is a table that helps to translate values to other values. For example if you are getting 6-8 bits of data but want to have 16 bits of data you apply a LUT. It could be a linear one and just multiply it to get the values. But the strength is where you have a curve in the LUT so that part o