Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个创建签名的 iphone 应用程序,它工作正常,但是任何想法如何从用户创建的屏幕上清除绘图,以便它可以再次签名。这是我的代码。
这是代码的链接
http://pastebin.com/kaaMGNge
如果您使用的是核心图形,您可以使用:
CGContextRef context = UIGraphicsGetCurrentContext(); CGContextClearRect(context, self.bounds);
或者
CGContextFlush(ctx);
如果您使用的是 UIBezierPath,那么您可以使用:
[bezierObject removeAllPoints];