mirror of
https://github.com/DKJone/DKWechatHelper.git
synced 2026-07-29 06:12:07 +08:00
[v1.0.6](https://github.com/DKWechatHelper/DKWechatHelper/releases/tag/1.0.6) / 2020-10-16
what's new * 朋友圈转发 * 支持7.0.17 * 更新越狱包7.0.17 * 更新已注入助手的7.0.17未签名包 * 更新越狱源安装包
This commit is contained in:
@@ -47,3 +47,19 @@
|
||||
|
||||
@end
|
||||
|
||||
@interface WCUIActionSheet : UIWindow
|
||||
|
||||
- (void)addDestructiveButtonTitle:(id)arg1 target:(id)arg2 sel:(SEL)arg3;
|
||||
- (void)addCancelBtnTitle:(id)arg1 target:(id)arg2 sel:(SEL)arg3;
|
||||
- (void)addBtnTitle:(id)arg1 target:(id)arg2 sel:(SEL)arg3;
|
||||
- (id)initWithTitle:(id)arg1;
|
||||
- (id)init;
|
||||
- (void)showInView:(id)arg1;
|
||||
|
||||
@end
|
||||
|
||||
//WCUIActionSheet *actionSheet = [[objc_getClass("WCUIActionSheet") alloc] initWithTitle:@"朋友圈转发"];
|
||||
//for (NSString* str in @[@"转发给好友",@"转发到朋友圈"]){
|
||||
// [actionSheet addBtnTitle:str target:self sel:@selector(startForword:)];
|
||||
//}
|
||||
//[actionSheet showInView:self];
|
||||
|
||||
@@ -321,6 +321,13 @@
|
||||
|
||||
|
||||
@end
|
||||
|
||||
@interface WCContentItem : NSObject
|
||||
@property(retain, nonatomic) NSString *linkUrl;
|
||||
@property(nonatomic) int type;
|
||||
@property(retain, nonatomic) NSMutableArray *mediaList;
|
||||
@end
|
||||
|
||||
/// 朋友圈数据
|
||||
@interface WCDataItem : NSObject
|
||||
@property (retain, nonatomic) NSMutableArray * likeUsers;
|
||||
@@ -329,9 +336,18 @@
|
||||
@property (retain, nonatomic) NSMutableArray * commentUsers;
|
||||
@property (nonatomic) int commentCount;
|
||||
@property(nonatomic,assign) BOOL likeFlag;
|
||||
@property(nonatomic) unsigned int createtime;
|
||||
@property(nonatomic) unsigned int createtime;
|
||||
@property(retain, nonatomic) NSString *contentDesc;
|
||||
@property(retain, nonatomic) WCContentItem *contentObj;
|
||||
|
||||
@end
|
||||
@interface WCNewCommitViewController : MMUIViewController
|
||||
- (id)initWithSightDraft:(id)arg1;
|
||||
@end
|
||||
@interface WCForwardViewController : WCNewCommitViewController
|
||||
- (id)initWithDataItem:(id)arg1 sessionID:(id)arg2;
|
||||
- (id)initWithDataItem:(id)arg1;
|
||||
@end
|
||||
|
||||
|
||||
@interface SettingUtil : NSObject
|
||||
@@ -457,6 +473,29 @@
|
||||
- (void)setLabelText:(id)arg1;
|
||||
- (void)ShowTipView:(id)arg1 Title:(id)arg2 Delay:(double)arg3;
|
||||
|
||||
@end
|
||||
|
||||
@interface WCOperateFloatView : UIView{
|
||||
UIImageView *m_lineView;
|
||||
}
|
||||
|
||||
@property(nonatomic) __weak UINavigationController *navigationController;
|
||||
@property(readonly, nonatomic) UIButton *m_commentBtn;
|
||||
@property(readonly, nonatomic) UIButton *m_likeBtn;
|
||||
@property(nonatomic,strong) UIButton *m_shareBtn;
|
||||
@property(nonatomic,strong)UIImageView *m_lineView2;
|
||||
@property(readonly, nonatomic) WCDataItem *m_item;
|
||||
- (void)onLikeItem:(id)arg1;
|
||||
- (void)hide;
|
||||
- (void)animationDidStopHide;
|
||||
- (void)animationDidStop;
|
||||
- (void)showWithItemData:(id)arg1 tipPoint:(struct CGPoint)arg2;
|
||||
- (id)init;
|
||||
- (double)protectWidth:(double)arg1;
|
||||
- (double)buttonWidth:(id)arg1;
|
||||
/// 朋友圈转发
|
||||
- (void)forwordTimeLine:(id)arg1;
|
||||
|
||||
@end
|
||||
#endif /* WechatHeaders_h */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user