摘要:
在/res/values目录下的文件中定义要显示的字符串,主要是考虑到后期可能需要换成英文之类的用户名或密码为空调用private MessageBar mMessageBar;mMessageBar.show(getResources().getString(R.string.login_error)); 阅读全文
摘要:
//追加数据NSString *homePat = NSHomeDirectory();NSString *sourcePath = [homePath stringByAppedingPathComponent:@"testfile.ext"];NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:sourcePath];//将结点跳转到文件末尾[fileHandle seekToEndOfFile];NSString *str = @"追加的数据";NSData *s 阅读全文