1 down vote favorite I'm adding the MKStoreKit to my app and I'm getting a warning, Method possibly missing a [super dealloc] call. I know the library has been converted for the new ARC. However, I'm not ready to convert my whole app to ARC. How shou…
Son 继承Father 当其他脚本想调用 Father类里面的变量 or 方法 可以把 Son r=new Son() 等价于 Father r=new Father() 注意: 函数只能单继承,但可以多层继承,比如son继承father,father可以继承 granpad,脚本创建son对象,可以透过son调取granpad or father的函数 or 变量 super关键字 A类继承B类,A类里面调用B类的函数和方法要使用super关键字 A类里面函数使用B类里面的方法和变量 p…
用于创建菜单的常用的方法有如下两种: 1.onCreateOptionsMenu(Menu menu) 2.onPrepareOptionsMenu(Menu menu) MyDiaryActivity中的方法: /** * Initialize the contents of the Activity's standard options menu. * You should place your menu items in to menu. */ public boolean onCreat…