Disabling Chat

To disable access to chat features or control access to chat features within your app, use theOpenFeintSettingDisableUserGeneratedContent settings key during initialization of OpenFeint. To disable chat, add the OpenFeintSettingDisableUserGeneratedContent settings key with a boolean true value in the settings dictionary that you pass in to the initialization method. For example:

NSDictionary* settings = [NSDictionary dictionaryWithObjectsAndKeys:

  [NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight], OpenFeintSettingDashboardOrientation,

  [NSNumber numberWithBool:YES], OpenFeintSettingDisableUserGeneratedContent, nil

];