The following error occurred when adding a UIView to the root of a NIB expecting that was loaded by a UITableViewController class. [sourcecode language="objc"] uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView] loaded the "some-id" nib but didn't get a UITableView.' [/sourcecode] If you have a UITableViewController and your root element is not a UITableView, you should …
Tag: Technology
How to configure a Shared Library in WebSphere with Jython
Here's a script that I used to configure a Shared Library in WebSphere 6.1 using Jython. [sourcecode language="python"] from string import whitespace sharedLibName = "APPLICATION_SHARED_LIB" # See if library already exists. cellId = AdminConfig.list("Cell") sharedLibraryId = AdminConfig.list("Library") if (sharedLibraryId.find(sharedLibName) < 0): # Library does not exist. print "Creating Shared Library" params = []; params.append(["name", sharedLibName]); …
Continue reading How to configure a Shared Library in WebSphere with Jython