• 2023-06-22Objective C数组的内存管理
    在addObj后及时释放所添加的objectNSMutableArray*array=[NSMutableArraynew];NSString*str=[[NSStringalloc]initWithFormat:@"a"];[arrayaddObject:str];[strrelease];[arrayrelease];也就是说当你吧str放进array的时候,相当于创建了一个str的副本,而这个副本
  • 2022-12-09iOS为imageView添加图片实现动画
    iOS为imageView添加图片实现动画代码如下://创建imageView self.imageView=[[UIImageViewalloc]initWithFrame:CGRectMake(0,40,320,260)];  //把图片添加到动态数组
  • 2022-12-09IOS之【UIToolbar】
    #import"OneViewController.h"@interfaceOneViewController()@end@implementation-(void)add{NSLog(@"添加");}-(void)delete{NSLog(@"删除");}-(void)view
  • 2022-10-08URL地址
    使用@RequestMapping注解可以在类/方法上加@Controller@RequestMapping("url")//http://localhost:8080/url/u01.do类级别publicclassUrlController{@Reque