在Swift中将整数转换为字符

如何在Swift中将整数转换为0到a,1到b,2到c。我知道用C ++和Python,但是找不到快速的直接方法

下面的C ++代码

  char a = 0 + 97;
  char b = 1 + 97;