A類
A類的屬性
@property(nonatomic,strong)NSString *themeName;
這個themeName是這個類的屬性,但是themeName是NSString的一個對象
--------------------------------------------
A類的方法
-(void)logIn:(UIBarButtonItem *)buttonItem;
-(void)logOut;
----------------------------------------------------------------
實例化A類的一個對象a
A *a = [[A alloc] init];
a.themeName = @"willingseal";
[a logOut ];