用于模板化的 NSString 或 NSMutableString 类别
有谁知道 NSString 或 NSMutableString 上允许模板化的类别吗?我想创建一个模板并使用变量标签,然后针对字符串“应用”符合 KVC 的对象以替换变量。
或者用另一种方式问...目前 iPhone/Objective-C 领域中的模板是如何完成的?是否有一个类已经可以处理这个问题了?
Is anyone aware of a category on NSString or NSMutableString that allows for templating? I'd like to create a template and use tags for variables, then "apply" a KVC-compliant object against the string to have the variables replaced.
Or another way of asking... How is templating currently done in the iPhone / Objective-C universe? Is there a class out there that already handles this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MGTemplateEngine 适用于 Mac OS X 和 iPhone。
MGTemplateEngine works on Mac OS X and on iPhone.
您可以尝试 MGTemplateEngine。链接文章的评论表明 iPhone 兼容性现已可用。
You might try MGTemplateEngine. The comments on the linked article suggest iPhone compatibility is now available.
https://github.com/groue/GRMustache 是 Mustache 模板语言的 Objective-C 实现。
https://github.com/groue/GRMustache is an Objective-C implementation of the Mustache template language.