rename `NativeString` to `CString`
[nit.git] / lib / ios / ios.nit
1 # This file is part of NIT (http://www.nitlanguage.org).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # iOS platform support
16 module ios
17
18 import platform
19 import app
20
21 import cocoa::foundation
22
23 redef fun print(msg) do msg.to_s.nslog
24 redef fun print_error(msg) do msg.to_s.nslog
25
26 redef class Text
27 private fun nslog do to_nsstring.nslog
28 end
29
30 redef class NSString
31 private fun nslog in "ObjC" `{ NSLog(@"%@", self); `}
32 end
33
34 redef class CString
35 # FIXME temp workaround for #1945, bypass Unicode checks
36 redef fun char_at(pos) do return self[pos].ascii
37 end