class Xcodeproj::Project::Object::Association::Reflection

def attribute_getter

def attribute_getter
  case type
  when :has_many
    uuid_method_name.pluralize
  when :has_one
    uuid_method_name
  end.to_sym
end