Hey guys, in lieu of the new iPhone SDK, it seems many things are confusing, conflicting, etc. I've posted this particular issue in the news thread concerning the SDK release, but I thought it warranted its own thread.
So, in the old SDK, I could use the code:
And it would set the background of the view to that cool blue and white striped background that you see in the "Settings" application. In the new SDK update though, the UIColor method "groupTableViewColor" was eliminated. (Contradictory to the Beta 1 to Beta 2 API Delta.)
So my question is, does anyone know of a way to replicate the above code, but in the new SDK? Thanks fellow MR programmers!
Edit: Solved. They apparently changed the method name to "groupTableViewBackgroundColor", but this method does *NOT* exist in the new UIColor.h header file. It exists in the API Delta. (But not under UIColor, under UIInterface.)
So, in the old SDK, I could use the code:
Code:
[view setBackgroundColor:[UIColor groupTableViewColor]];
And it would set the background of the view to that cool blue and white striped background that you see in the "Settings" application. In the new SDK update though, the UIColor method "groupTableViewColor" was eliminated. (Contradictory to the Beta 1 to Beta 2 API Delta.)
So my question is, does anyone know of a way to replicate the above code, but in the new SDK? Thanks fellow MR programmers!
Edit: Solved. They apparently changed the method name to "groupTableViewBackgroundColor", but this method does *NOT* exist in the new UIColor.h header file. It exists in the API Delta. (But not under UIColor, under UIInterface.)