setTitleLocKey method

ApnsMpnBuilder setTitleLocKey(
  1. String? val
)

Sets the aps.alert.title-loc-key field.

  • val: A string to be used for the aps.alert.title-loc-key field value, or nil to clear it.

Implementation

ApnsMpnBuilder setTitleLocKey(String? val) {
  _titleLocKey = val;
  return this;
}