I found a way to do the job. If I want to inherit superclass's convenience initializer in a subclass, I have to follow the rule 1 and 2 as been introduced in heading "Automatic initializer inheritence", in the swift programming manual. More specially,
“Rule 1
If your subclass doesn’t define any designated initializers, it automatically inherits all of its superclass designated initializers.
Rule 2
If your subclass provides an implementation of all of its superclass designated initializers—either by inheriting them as per rule 1, or by providing a custom implementation as part of its definition—then it automatically inherits all of the superclass convenience initializers.”
Excerpt From: Apple Inc. “The Swift Programming Language (Swift 3).” iBooks