我在我的表中有下劃線字段像display_name我使用ClassMethod hydrator轉換下劃線到駱駝案件,但它不起作用,(電子郵件屬性工作,但displayName不起作用)這是我的代碼: class UserEntity
{
protected $email;
protected $displayName;
public function getDisplayName(
如果我有一個從類A繼承的類B,我可以通過類A中定義的類方法實例化類B嗎? class A
def self.instantiate params
# ???
end
end
class B < A
end
b = B.instantiate 123
b.class # => B
顯然,我不想叫B.new從A.從A繼承任何類應該從中受益。 class
使用委託我已經得到了想要使用CLLocationManager和它的一些委託方法一類方法。 什麼是訪問從類方法的委託方法的最佳方式,因爲我沒有真正的實例級別的「自我」?我可以實例化一個自我,作爲委託,這將讓委託方法運行,但沒有說明如何獲取數據出來使用。什麼是最好的方法? // desired end function, which runs a block when location is fou