Search code examples
iphoneobjective-calphagrouped-table

How to change the alpha value of the first table in grouped table in iphone?


I am new to iphone development. I am displaying my content in grouped table view. I want to change the alpha value of the first group of my table only. How can i achieve that. Please help me out. Thanks.


Solution

  • What do you mean with "first table"?

    Changing the alpha value of a table is done by

    table.alpha = new_value
    

    where new_value ranges from 0 to 1.

    Marco